Skip to content

Commit f67af96

Browse files
committed
removed setup clean up
Signed-off-by: Sai Shree Pradhan <saishree.pradhan@databricks.com>
1 parent 37d7b48 commit f67af96

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

tests/e2e/test_concurrent_telemetry.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,9 @@ def telemetry_setup_teardown(self):
2929
before each test and shuts it down afterward. Using a fixture makes
3030
this robust and automatic.
3131
"""
32-
# --- SETUP ---
33-
if TelemetryClientFactory._executor:
34-
TelemetryClientFactory._executor.shutdown(wait=True)
35-
TelemetryClientFactory._clients.clear()
36-
TelemetryClientFactory._executor = None
37-
TelemetryClientFactory._initialized = False
38-
3932
try:
40-
yield # This is where the test runs
33+
yield
4134
finally:
42-
# --- TEARDOWN ---
4335
if TelemetryClientFactory._executor:
4436
TelemetryClientFactory._executor.shutdown(wait=True)
4537
TelemetryClientFactory._executor = None

0 commit comments

Comments
 (0)