-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
30 lines (29 loc) · 924 Bytes
/
Copy pathpytest.ini
File metadata and controls
30 lines (29 loc) · 924 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
27
28
29
30
[pytest]
# pytest configuration file
minversion = 6.0
testpaths = tests
python_files = test_*.py *_test.py
python_classes = Test*
python_functions = test_*
addopts =
--strict-markers
--strict-config
--verbose
--tb=short
--cov=easy_tpp
--cov-report=html:coverage_html
--cov-report=xml:coverage.xml
--cov-report=term-missing
--cov-config=.coveragerc
--cov-fail-under=80
markers = slow: marks tests as slow (deselect with '-m "not slow"')
gpu: marks tests that require GPU
device: marks tests for device consistency
integration: marks tests as integration tests
unit: marks tests as unit tests
functional: marks tests as functional tests
model: marks tests for model components
data: marks tests for data processing
config: marks tests for configuration
runner: marks tests for training/running logic
utils: marks tests for utility functions