-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
28 lines (28 loc) · 769 Bytes
/
pytest.ini
File metadata and controls
28 lines (28 loc) · 769 Bytes
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
[pytest]
asyncio_mode = auto
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-v
--tb=short
--strict-markers
--cov=app
--cov-report=term-missing
--cov-report=html:htmlcov
--cov-fail-under=70
markers =
unit: Unit tests (fast, isolated)
integration: Integration tests (may require external services)
slow: Slow tests (performance, heavy operations)
destructive: Tests that modify external state
github: GitHub-related tests
gitlab: GitLab-related tests
llm: LLM provider tests
database: Database-related tests
monitoring: Monitoring tool tests
security: Security-related tests
filterwarnings =
ignore::DeprecationWarning
ignore::UserWarning