diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-11-02 07:50:51 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-11-02 08:12:51 -0400 |
commit | 87987b1237a85001965385875b3eaddb02da43be (patch) | |
tree | f38569df1e8af8195dba6c44ade454ac737b67ee /tests/test_process.py | |
parent | 8a3bf9edc919e87605a8079aa11a3494f562a9b0 (diff) | |
download | python-coveragepy-git-87987b1237a85001965385875b3eaddb02da43be.tar.gz |
test(fix): isolate excepthook tests from each other
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index 7d7875d0..e048bdc2 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -1092,6 +1092,8 @@ class EnvironmentTest(CoverageTest): class ExcepthookTest(CoverageTest): """Tests of sys.excepthook support.""" + # TODO: do we need these as process tests if we have test_execfile.py:RunFileTest? + def test_excepthook(self): self.make_file("excepthook.py", """\ import sys |