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 2c3b19d commit 6dbe54bCopy full SHA for 6dbe54b
pyproject.toml
@@ -99,10 +99,8 @@ max_line_length = 120
99
[tool.pytest.ini_options]
100
asyncio_mode = "auto"
101
asyncio_default_fixture_loop_scope = "module" # WARNING: Changing this may break tests. A `module`-scoped session might be faster, but also unstable.
102
-test_paths = [
103
- "tests",
104
-]
105
-addopts = "--tb=short -p no:warnings --import-mode=importlib"
+testpaths = ["tests/unit"] # Default to unit tests
+addopts = "--tb=short -p no:warnings --import-mode=importlib --ignore=tests/integration" # Ignore integration by default
106
pythonpath = ["."]
107
faulthandler_timeout = 30 # Reduced from 60
108
timeout = 60 # Reduced from 300
0 commit comments