-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
29 lines (28 loc) · 929 Bytes
/
pytest.ini
File metadata and controls
29 lines (28 loc) · 929 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
[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
--asyncio-mode=auto
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
integration: marks tests as integration tests
unit: marks tests as unit tests
performance: marks tests as performance tests (benchmarks)
async: marks tests as async tests
parallel: marks tests that can run in parallel
micro: marks tests as micro/smoke tests for quick feedback
layers: marks tests for layer functionality
processor: marks tests for processor functionality
time_series: marks tests for time series functionality
distributed: marks tests that require distributed dependencies (ray, dask)
asyncio_mode = auto