-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpytest.ini
More file actions
26 lines (23 loc) · 562 Bytes
/
pytest.ini
File metadata and controls
26 lines (23 loc) · 562 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
[pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
--strict-markers
--verbose
--cov=simtrademl
--cov-report=term-missing
--cov-report=html
--cov-report=xml
markers =
unit: Unit tests
integration: Integration tests
performance: Performance tests
e2e: End-to-end tests
data_quality: Data quality tests
slow: Slow tests
# Ignore deprecation warnings from dependencies
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning