-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpytest.ini
More file actions
30 lines (30 loc) · 761 Bytes
/
pytest.ini
File metadata and controls
30 lines (30 loc) · 761 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
[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
tui: TUI integration tests
performance: Performance tests
hardware: Tests requiring hardware (skipped in CI)
slow: Slow tests (may be skipped)
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
ignore::UserWarning:.*distutils.*