-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
50 lines (43 loc) · 1.06 KB
/
pytest.ini
File metadata and controls
50 lines (43 loc) · 1.06 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[tool:pytest]
# Pytest configuration for ISS Speed Analysis Dashboard tests
# Test discovery
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Output options
addopts =
--verbose
--tb=short
--strict-markers
--disable-warnings
--color=yes
--durations=10
# Markers for test categorization
markers =
unit: Unit tests for individual functions
integration: Integration tests for API endpoints
e2e: End-to-end workflow tests
slow: Tests that take longer to run
data_integrity: Tests that verify data integrity
performance: Performance and load tests
# Minimum version requirements
minversion = 6.0
# Test timeout (in seconds)
timeout = 300
# Coverage options
[coverage:run]
source = iss_speed_html_dashboard_v2_clean.py
omit =
tests/*
test_*.py
*/site-packages/*
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.:
class .*\bProtocol\):
@(abc\.)?abstractmethod