diff options
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 |