14 lines
384 B
INI
14 lines
384 B
INI
[pytest]
|
|
testpaths = tests
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
addopts =
|
|
-v
|
|
--strict-markers
|
|
--tb=short
|
|
--disable-warnings
|
|
markers =
|
|
integration: Integration tests that require database (deselect with '-m "not integration"')
|
|
smoke: Smoke tests for basic functionality
|
|
unit: Unit tests (fast, no external dependencies)
|