We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bf0562 commit 0c0a9b5Copy full SHA for 0c0a9b5
pyproject.toml
@@ -72,10 +72,14 @@ raw-options = { local_scheme = "no-local-version" }
72
73
74
[tool.pytest.ini_options]
75
-addopts = ["-ra", "--strict-markers", "--strict-config"]
+addopts = ["--strict-markers", "--strict-config", "--import-mode=importlib"]
76
testpaths = "tests"
77
xfail_strict = true
78
-filterwarnings = ["once::Warning"]
+filterwarnings = [
79
+ "once::Warning",
80
+ # Probably <https://github.com/pytest-dev/pytest-asyncio/issues/724>
81
+ "ignore:unclosed event loop:ResourceWarning",
82
+]
83
asyncio_mode = "auto"
84
asyncio_default_fixture_loop_scope = "function"
85
0 commit comments