We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16943a4 commit 69a5aa7Copy full SHA for 69a5aa7
test/test_monitor.py
@@ -87,7 +87,11 @@ def test_cleanup_executors_on_client_close(self):
87
def test_no_thread_start_runtime_err_on_shutdown(self):
88
"""Test we silence noisy runtime errors fired when the MongoClient spawns a new thread
89
on process shutdown."""
90
- command = [sys.executable, "-c", "from pymongo import MongoClient; c = MongoClient()"]
+ command = [
91
+ sys.executable,
92
+ "-c",
93
+ "from pymongo import MongoClient; c = MongoClient()",
94
+ ]
95
completed_process: subprocess.CompletedProcess = subprocess.run(
96
command, capture_output=True
97
)
0 commit comments