-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
35 lines (30 loc) · 766 Bytes
/
pytest.ini
File metadata and controls
35 lines (30 loc) · 766 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
31
32
33
34
35
[tool:pytest]
# Pytest configuration for Quickscene testing
# Test discovery
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Coverage settings
addopts =
--cov=app
--cov-report=html:htmlcov
--cov-report=term-missing
--cov-report=xml
--cov-fail-under=95
--strict-markers
--strict-config
--verbose
# Test markers
markers =
unit: Unit tests for individual modules
integration: Integration tests for module interactions
system: System-level end-to-end tests
performance: Performance and benchmark tests
slow: Tests that take longer than 1 second
# Filtering
filterwarnings =
ignore::UserWarning
ignore::DeprecationWarning
# Minimum version
minversion = 6.0