diff options
| author | Jason Madden <jamadden@gmail.com> | 2017-06-09 15:49:04 -0500 |
|---|---|---|
| committer | Jason Madden <jamadden@gmail.com> | 2017-06-09 15:49:04 -0500 |
| commit | b752e80b28439caa994663e16e16a1899b1dfc2c (patch) | |
| tree | 2627b97f777042f14016ae17ee91ed324bd436c6 /src/zope/interface/tests/test_advice.py | |
| parent | 2f7070393e211f37418407f099b7526fc5aa8167 (diff) | |
| download | zope-interface-coverage.tar.gz | |
Convert tox to run the coverage command, like travis.coverage
Fixes #87
Diffstat (limited to 'src/zope/interface/tests/test_advice.py')
| -rw-r--r-- | src/zope/interface/tests/test_advice.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/zope/interface/tests/test_advice.py b/src/zope/interface/tests/test_advice.py index 0739ac1..4c47e67 100644 --- a/src/zope/interface/tests/test_advice.py +++ b/src/zope/interface/tests/test_advice.py @@ -221,7 +221,7 @@ class Test_determineMetaclass(unittest.TestCase): self.assertEqual(self._callFUT((Meta, type)), Metameta) @_skip_under_py2 - def test_meta_of_class_py3k(self): + def test_meta_of_class_py3k(self): # pragma: no cover (tox runs coverage on Python 2) # Work around SyntaxError under Python2. EXEC = '\n'.join([ 'class Metameta(type):', @@ -249,7 +249,7 @@ class Test_determineMetaclass(unittest.TestCase): self.assertEqual(self._callFUT((A, B,)), Meta_B) @_skip_under_py2 - def test_multiple_in_hierarchy_py3k(self): + def test_multiple_in_hierarchy_py3k(self): # pragma: no cover (tox runs coverage on Python 2) # Work around SyntaxError under Python2. EXEC = '\n'.join([ 'class Meta_A(type):', @@ -282,7 +282,7 @@ class Test_determineMetaclass(unittest.TestCase): self.assertRaises(TypeError, self._callFUT, (A, B,)) @_skip_under_py2 - def test_multiple_not_in_hierarchy_py3k(self): + def test_multiple_not_in_hierarchy_py3k(self): # pragma: no cover (tox runs coverage on Python 2) # Work around SyntaxError under Python2. EXEC = '\n'.join([ 'class Meta_A(type):', |
