-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
26 lines (24 loc) · 757 Bytes
/
Copy pathpytest.ini
File metadata and controls
26 lines (24 loc) · 757 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
26
[tool:pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts = -v --tb=short --strict-markers --disable-warnings --color=yes --asyncio-mode=auto
markers =
unit: Unit tests
integration: Integration tests
slow: Slow running tests
safety: Safety-critical tests
compliance: Compliance tests
performance: Performance tests
industry: Industry-specific tests
core: Core framework tests
collectors: Data collector tests
evaluators: Evaluator tests
cli: CLI interface tests
reports: Report generation tests
asyncio: mark test to be run with asyncio
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
ignore::UserWarning