Skip to content

Commit 40a52f5

Browse files
authored
Merge pull request #30 from ccnmtl/release-1.1.2
🔖 release version 1.1.2
2 parents a0225e1 + 50b3aca commit 40a52f5

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGES.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
1.1.2 (2020-05-26)
2+
==================
3+
* Don't require nose for testing
4+
* Fix version in setup.py
5+
* Fix manifest file to include everything
6+
* Fix some flake8 errors on string format variables

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
recursive-include smoketest
2+
include CHANGES.txt
13
include README.md

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
setup(
77
name="django-smoketest",
8-
version="1.1.0",
8+
version="1.1.2",
99
author="Anders Pearson",
10-
author_email="ccnmtl-dev@columbia.edu",
10+
author_email="ctl-dev@columbia.edu",
1111
url="https://github.com/ccnmtl/django-smoketest",
1212
description="Django smoketest framework",
1313
long_description=open(os.path.join(ROOT, 'README.md')).read(),

smoketest/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,12 @@ def assertIn(self, a, b, msg=None):
116116
def assertNotIn(self, a, b, msg=None):
117117
if a in b:
118118
self._status = "FAIL"
119-
self._msg = msg or "%a is in %b" % (a, b)
119+
self._msg = msg or "{} is in {}".format(a, b)
120120

121121
def assertIsInstance(self, a, b, msg=None):
122122
if not isinstance(a, b):
123123
self._status = "FAIL"
124-
self._msg = msg or "%a is not an instance of %s" % (a, b)
124+
self._msg = msg or "{} is not an instance of {}".format(a, b)
125125

126126
def assertNotIsInstance(self, a, b, msg=None):
127127
if isinstance(a, b):

0 commit comments

Comments
 (0)