Skip to content

Commit 25d29c1

Browse files
authored
Update test_flusher.py
1 parent a981ac2 commit 25d29c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_flusher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def uploader(frame):
144144
self.assertFalse(fw.should_run)
145145

146146
# test relies on overriding excepthook which is available from 3.8+
147-
@unittest.skipIf(sys.version_info <= (3, 7))
147+
@unittest.skipIf(sys.version_info <= (3, 7), "Test skipped because overriding excepthook is not available on Python 3.7 and lower")
148148
def test_shutdown_dont_raise_exception_in_thread(self):
149149
original_excepthook = threading.excepthook
150150
threading.excepthook = mock.Mock()

0 commit comments

Comments
 (0)