diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-01-10 08:33:07 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-01-10 09:46:18 -0500 |
commit | 0ac78b400e6d45debc626748c1c94b9e1868c645 (patch) | |
tree | eab4f2b02da588d14f6a6e9e170ccfe8b552417b /tests/test_process.py | |
parent | c7649842853de89c9a67c3f361f967349b17cb5f (diff) | |
download | python-coveragepy-git-0ac78b400e6d45debc626748c1c94b9e1868c645.tar.gz |
Clean up the platform constants in env.py
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index 9fb930de..e4886156 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -1099,7 +1099,7 @@ class ExcepthookTest(CoverageTest): self.assertEqual(line_counts(data)['excepthook.py'], 7) def test_excepthook_exit(self): - if env.PYPY or env.JYTHON: + if not env.CPYTHON: self.skipTest("non-CPython handles excepthook exits differently, punt for now.") self.make_file("excepthook_exit.py", """\ import sys |