-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
executable file
·23 lines (20 loc) · 847 Bytes
/
pytest.ini
File metadata and controls
executable file
·23 lines (20 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[pytest]
asyncio_mode = auto
markers =
integration: marks tests as integration tests (deselect with '-m "not integration"')
benchmark: marks tests as performance benchmarks (deselect with '-m "not benchmark"')
slow: marks tests as slow (deselect with '-m "not slow"')
e2e: marks tests as end-to-end tests (deselect with '-m "not e2e"')
asyncio: mark test as async
headless: mark test as headless E2E
gateway: marks tests for external gateway service (deselect with '-m "not gateway"')
# Default: skip slow, integration, and benchmark tests to keep unit tests fast
addopts = -m "not slow and not benchmark and not integration" --strict-markers
timeout = 30
# Test discovery
testpaths = tests mnemonic_cortex/tests council_orchestrator/tests forge/tests
# Coverage
[coverage:run]
omit =
*/tests/*
*/test_*.py