mirror of
https://github.com/makeplane/plane.git
synced 2025-12-18 12:57:52 +01:00
17 lines
447 B
INI
17 lines
447 B
INI
[pytest]
|
|
DJANGO_SETTINGS_MODULE = plane.settings.test
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
|
|
markers =
|
|
unit: Unit tests for models, serializers, and utility functions
|
|
contract: Contract tests for API endpoints
|
|
smoke: Smoke tests for critical functionality
|
|
slow: Tests that are slow and might be skipped in some contexts
|
|
|
|
addopts =
|
|
--strict-markers
|
|
--reuse-db
|
|
--nomigrations
|
|
-vs |