-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest-fast.ini
More file actions
26 lines (26 loc) · 835 Bytes
/
pytest-fast.ini
File metadata and controls
26 lines (26 loc) · 835 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 =
-v
--tb=short
--strict-markers
--disable-warnings
--cov=graphflow
--cov-report=term-missing
--cov-report=html
--cov-report=xml
--maxfail=5
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
integration: marks tests as integration tests
unit: marks tests as unit tests
parallel: marks tests that can run in parallel
micro: marks tests as micro/smoke tests
layers: marks tests for layer functionality
processor: marks tests for processor functionality
time_series: marks tests for time series functionality
performance: marks tests as performance benchmarks
distributed: marks tests that require distributed dependencies (ray, dask)