-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpytest.ini
More file actions
23 lines (23 loc) · 726 Bytes
/
pytest.ini
File metadata and controls
23 lines (23 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[pytest]
minversion = 6.0
addopts = -ra -q --strict-markers --strict-config
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
markers =
unit: Unit tests for individual components
integration: Integration tests across components
performance: Performance and benchmark tests
security: Security-focused tests
slow: Tests that take more than 1 second
cache: Cache-related tests
database: Database operation tests
tools: Tool framework tests
filterwarnings =
ignore::UserWarning
ignore::DeprecationWarning
log_cli = true
log_cli_level = INFO
log_cli_format = %(asctime)s [%(levelname)8s] %(name)s: %(message)s
log_cli_date_format = %Y-%m-%d %H:%M:%S