19 lines
425 B
INI
19 lines
425 B
INI
|
|
[pytest]
|
||
|
|
python_files = test_*.py
|
||
|
|
python_classes = Test*
|
||
|
|
python_functions = test_*
|
||
|
|
testpaths = tests
|
||
|
|
addopts =
|
||
|
|
-v
|
||
|
|
--strict-markers
|
||
|
|
--tb=short
|
||
|
|
--cov=app
|
||
|
|
--cov-report=term-missing
|
||
|
|
--cov-report=html
|
||
|
|
markers =
|
||
|
|
slow: Tests that are slow to run
|
||
|
|
integration: Integration tests
|
||
|
|
unit: Unit tests
|
||
|
|
auth: Authentication tests
|
||
|
|
product: Product-related tests
|
||
|
|
order: Order-related tests
|