Skip to content

Commit

Permalink
Merge pull request #30 from ccnmtl/release-1.1.2
Browse files Browse the repository at this point in the history
🔖 release version 1.1.2
  • Loading branch information
nikolas authored May 27, 2020
2 parents a0225e1 + 50b3aca commit 40a52f5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
1.1.2 (2020-05-26)
==================
* Don't require nose for testing
* Fix version in setup.py
* Fix manifest file to include everything
* Fix some flake8 errors on string format variables
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
recursive-include smoketest
include CHANGES.txt
include README.md
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

setup(
name="django-smoketest",
version="1.1.0",
version="1.1.2",
author="Anders Pearson",
author_email="ccnmtl[email protected]",
author_email="ctl[email protected]",
url="https://github.com/ccnmtl/django-smoketest",
description="Django smoketest framework",
long_description=open(os.path.join(ROOT, 'README.md')).read(),
Expand Down
4 changes: 2 additions & 2 deletions smoketest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,12 @@ def assertIn(self, a, b, msg=None):
def assertNotIn(self, a, b, msg=None):
if a in b:
self._status = "FAIL"
self._msg = msg or "%a is in %b" % (a, b)
self._msg = msg or "{} is in {}".format(a, b)

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

def assertNotIsInstance(self, a, b, msg=None):
if isinstance(a, b):
Expand Down

0 comments on commit 40a52f5

Please sign in to comment.