-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpytest.ini
More file actions
33 lines (33 loc) · 982 Bytes
/
pytest.ini
File metadata and controls
33 lines (33 loc) · 982 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
29
30
31
32
33
[pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
pythonpath = .
addopts =
--verbose
--tb=short
--strict-markers
--strict-config
--cov=src
--cov-report=term-missing
--cov-report=html:htmlcov
--cov-report=xml:coverage.xml
--cov-fail-under=10
--durations=10
asyncio_mode = auto
asyncio_default_fixture_loop_scope = function
markers =
unit: Unit tests
integration: Integration tests
e2e: End-to-end tests exercising the CLI / pipeline / container surface
tui: TUI integration tests
performance: Performance tests
hardware: Tests requiring hardware (skipped in CI)
slow: Slow tests (may be skipped)
requires_container_runtime: Skipped unless podman/docker is on PATH
requires_build_isolation: Builds an sdist/wheel in a tmp venv (slow)
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
ignore::UserWarning:.*distutils.*