17 lines
329 B
INI
17 lines
329 B
INI
[pytest]
|
|
minversion = 7.0
|
|
testpaths = tests
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
addopts =
|
|
--strict-markers
|
|
--cov=src
|
|
--cov-report=html
|
|
--cov-report=term-missing
|
|
-v
|
|
markers =
|
|
unit: Unit tests
|
|
integration: Integration tests
|
|
property_test: Property-based tests
|