-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
25 lines (20 loc) · 599 Bytes
/
Copy pathpytest.ini
File metadata and controls
25 lines (20 loc) · 599 Bytes
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
# pytest.ini
[pytest]
minversion = 7.0
# Tell pytest where to look for tests
testpaths = tests
# Match test file naming convention
python_files = test_*.py
# Add options:
# -ra : show summary of skipped/failed tests
# -q : quiet mode (less noise, just results)
addopts = -ra
# Filter warnings to keep output clean
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
# Optional markers for grouping tests
markers =
logging: tests for logging subsystem
rotation: tests for log rotation and archiving
lifecycle: tests for lifecycle and audit logging