File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
tests/integrations/logging Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -288,7 +288,6 @@ def test_logging_dictionary_args(sentry_init, capture_events):
288288 assert event ["logentry" ]["params" ] == {"foo" : "bar" , "bar" : "baz" }
289289
290290
291- @minimum_python_37
292291def test_sentry_logs_warning (sentry_init , capture_envelopes ):
293292 """
294293 The python logger module should create 'warn' sentry logs if the flag is on.
@@ -314,7 +313,6 @@ def test_sentry_logs_warning(sentry_init, capture_envelopes):
314313 assert logs [0 ]["severity_text" ] == "warn"
315314
316315
317- @minimum_python_37
318316def test_sentry_logs_debug (sentry_init , capture_envelopes ):
319317 """
320318 The python logger module should not create 'debug' sentry logs if the flag is on by default
@@ -329,7 +327,6 @@ def test_sentry_logs_debug(sentry_init, capture_envelopes):
329327 assert len (envelopes ) == 0
330328
331329
332- @minimum_python_37
333330def test_no_log_infinite_loop (sentry_init , capture_envelopes ):
334331 """
335332 If 'debug' mode is true, and you set a low log level in the logging integration, there should be no infinite loops.
@@ -348,7 +345,6 @@ def test_no_log_infinite_loop(sentry_init, capture_envelopes):
348345 assert len (envelopes ) == 1
349346
350347
351- @minimum_python_37
352348def test_logging_errors (sentry_init , capture_envelopes ):
353349 """
354350 The python logger module should be able to log errors without erroring
You can’t perform that action at this time.
0 commit comments