diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2013-09-15 12:05:46 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2013-09-15 12:05:46 -0400 |
commit | d15d0f8e32f90511c2f956d5f383ca7b13fdedd4 (patch) | |
tree | f56f461406bd8a727acfab5107739abe71ed2861 /tests | |
parent | 59ed861fd72f1577e696616796155cbb665e5f75 (diff) | |
download | python-coveragepy-d15d0f8e32f90511c2f956d5f383ca7b13fdedd4.tar.gz |
Skip bug212 on py3, it isn't fixed yet.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_arcs.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py index d7e2e48..6268e28 100644 --- a/tests/test_arcs.py +++ b/tests/test_arcs.py @@ -509,7 +509,9 @@ class ExceptionArcTest(CoverageTest): arcz=".1 12 23 35 56 61 17 7.", arcz_missing="", arcz_unpredicted="") - if sys.version_info >= (2, 6): + # Run this test only on 2.6 and 2.7 for now. I hope to fix it on Py3 + # eventually... + if (2, 6) <= sys.version_info < (3,): # "except Exception as e" is crucial here. def test_bug_212(self): self.check_coverage("""\ |