summaryrefslogtreecommitdiff
path: root/tests/test_oddball.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-05-01 13:02:31 -0400
committerNed Batchelder <ned@nedbatchelder.com>2021-05-01 13:30:39 -0400
commit9df434550a499c16e9fd26cfb9627837bfdc02a5 (patch)
tree5619ea3c3bec05d04363a66ced9c7ebffcefb1df /tests/test_oddball.py
parent3fe17c1f2244c07cf9d0f9e3609392c2ad441db1 (diff)
downloadpython-coveragepy-git-9df434550a499c16e9fd26cfb9627837bfdc02a5.tar.gz
refactor: remove code explicitly choosing between py2 and py3
Diffstat (limited to 'tests/test_oddball.py')
-rw-r--r--tests/test_oddball.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_oddball.py b/tests/test_oddball.py
index da0531f1..a63719ea 100644
--- a/tests/test_oddball.py
+++ b/tests/test_oddball.py
@@ -550,7 +550,6 @@ class ExecTest(CoverageTest):
assert statements == [31]
assert missing == []
- @pytest.mark.skipif(env.PY2, reason="Python 2 can't seem to compile the file.")
def test_unencodable_filename(self):
# https://github.com/nedbat/coveragepy/issues/891
self.make_file("bug891.py", r"""exec(compile("pass", "\udcff.py", "exec"))""")