-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
26 lines (26 loc) · 733 Bytes
/
Copy pathpytest.ini
File metadata and controls
26 lines (26 loc) · 733 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
--strict-markers
--strict-config
--tb=short
--cov=safe
--cov-report=html
--cov-report=term-missing
--cov-fail-under=80
markers =
unit: Unit tests for individual components
integration: Integration tests for full workflows
curriculum: Curriculum learning and progression tests
dataset: Dataset validation and quality tests
slow: Tests that take a long time to run
gpu: Tests that require GPU access
memory: Tests that require significant memory
filterwarnings =
ignore::UserWarning
ignore::DeprecationWarning
ignore::PendingDeprecationWarning