-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpytest.ini
More file actions
35 lines (33 loc) · 1.02 KB
/
Copy pathpytest.ini
File metadata and controls
35 lines (33 loc) · 1.02 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
35
[pytest]
addopts = --cov=orka --cov-report=term-missing --cov-report=xml --cov-fail-under=80.0
testpaths = tests/unit tests/integration
asyncio_mode = strict
asyncio_default_fixture_loop_scope = function
markers =
unit: Unit tests with mocked external services
integration: Integration tests with real services (local only)
slow: marks tests as slow (deselect with '-m "not slow"')
performance: marks tests as performance tests
redis: marks tests that require Redis
llm: marks tests that require LLM APIs
asyncio: marks tests as async
filterwarnings =
error:coroutine .* was never awaited:RuntimeWarning
error::DeprecationWarning:orka\..*
ignore::RuntimeWarning:unittest.mock
ignore::DeprecationWarning:datetime
[coverage:run]
source = orka
omit =
orka/docker/*
orka/start_*.py
orka/orka_start.py
*/tests/*
setup.py
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.: