forked from josephsenior/Grinta-Coding-Agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
34 lines (31 loc) · 1.39 KB
/
Copy pathpytest.ini
File metadata and controls
34 lines (31 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[pytest]
addopts = -q -p no:warnings -p no:libtmux --ignore=backend/tests/unit/quarantine --ignore=scripts/evals/quarantine
# Default ``pytest`` discovers ``backend/tests`` (unit + integration + e2e +
# stress; long run). Narrow discovery explicitly when needed, e.g.:
# pytest backend/tests/unit
# pytest backend/tests/integration
# pytest backend/tests/stress
# pytest backend/tests/e2e
# Avoid recursing into duplicate or unrelated trees which can trigger import
# mismatches or accidental collection on Windows.
norecursedirs =
backend/evaluation
backend/tests/manual
backend/tests/unit/quarantine
scripts/evals/quarantine
node_modules
testpaths =
backend/tests
pythonpath = .
markers =
heavy: marks tests that are heavy (install large deps / long runtime)
integration: marks integration tests that may require docker or external services
benchmark: marks performance/benchmark tests
stress: marks stress tests
asyncio: marks tests that require asyncio execution
asyncio_mode = auto
filterwarnings =
ignore:json_encoders is deprecated:pydantic.PydanticDeprecatedSince20
ignore:Providing `stateless_http` when creating a server is deprecated.:DeprecationWarning
ignore:Inheritance class AiohttpClientSession from ClientSession is discouraged:DeprecationWarning
ignore:coroutine 'AsyncMockMixin._execute_mock_call' was never awaited:RuntimeWarning