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 | 4381e134c01ffd19873da68394b33e36718b4fc9 (patch) | |
tree | c751c3a4db264295c86db73bd31abbbf6426957c | |
parent | cf4bd881d9cb49a36cd51cda37e1244add23bb14 (diff) | |
download | python-coveragepy-git-4381e134c01ffd19873da68394b33e36718b4fc9.tar.gz |
Skip bug212 on py3, it isn't fixed yet.
-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 d7e2e483..6268e289 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("""\ |