We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8085a7 commit 1c26b1cCopy full SHA for 1c26b1c
pandas/tests/io/conftest.py
@@ -1,3 +1,4 @@
1
+import logging
2
import os
3
import shlex
4
import subprocess
@@ -49,6 +50,8 @@ def s3_base(worker_id):
49
50
pytest.importorskip("s3fs")
51
pytest.importorskip("boto3")
52
requests = pytest.importorskip("requests")
53
+ # GH 38090: Suppress http logs in tests by moto_server
54
+ logging.getLogger("werkzeug").disabled = True
55
56
with tm.ensure_safe_environment_variables():
57
# temporary workaround as moto fails for botocore >= 1.11 otherwise,
0 commit comments