-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
20 lines (20 loc) · 729 Bytes
/
pytest.ini
File metadata and controls
20 lines (20 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[pytest]
minversion = 6.0
addopts = -v --tb=short --strict-markers --strict-config
testpaths = tests
python_files = test_*.py *_test.py
python_classes = Test*
python_functions = test_*
asyncio_default_fixture_loop_scope = function
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
integration: marks tests as integration tests
unit: marks tests as unit tests
auth: marks tests related to authentication
database: marks tests related to database operations
api: marks tests related to API endpoints
services: marks tests related to service layer
schemas: marks tests related to data validation
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning