forked from journiv/journiv-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
36 lines (36 loc) · 1.08 KB
/
pytest.ini
File metadata and controls
36 lines (36 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
--strict-markers
--strict-config
--verbose
--tb=short
--cov=app
--cov-report=term-missing
--cov-report=html:htmlcov
--cov-report=xml
--cov-fail-under=60
--asyncio-mode=auto
--disable-warnings
markers =
unit: Unit tests (tests/unit/)
integration: Integration tests (tests/integration/)
e2e: End-to-end tests (tests/e2e/)
upgrade: Upgrade tests (tests/upgrade/)
slow: Slow tests that take more than 5 seconds
auth: Authentication and authorization tests
database: Database-related tests
api: API endpoint tests
security: Security-related tests
performance: Performance and load tests
media: Media processing and file upload tests
analytics: Analytics and insights tests
health: Health check endpoint tests
file_processing: File processing background tasks
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
ignore::pytest.PytestUnraisableExceptionWarning