mirror of
https://github.com/makeplane/plane.git
synced 2026-07-13 22:09:12 +02:00
22 lines
531 B
INI
22 lines
531 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
|
|
asyncio: Tests that use asyncio
|
|
|
|
addopts =
|
|
--strict-markers
|
|
--reuse-db
|
|
--nomigrations
|
|
-vs
|
|
|
|
|
|
# Async test configuration
|
|
asyncio_mode = auto |