forked from LyoHUB/LyoPRONTO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
35 lines (29 loc) · 861 Bytes
/
pytest.ini
File metadata and controls
35 lines (29 loc) · 861 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
[pytest]
# Pytest configuration for LyoPRONTO
# Test discovery patterns
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Test paths
testpaths = tests
# Output options
addopts =
-v
--tb=short
--strict-markers
--disable-warnings
-n auto
--maxfail=5
# Markers for organizing tests
markers =
unit: Unit tests for individual functions
integration: Integration tests for calculators
regression: Regression tests against known results
slow: Tests that take a long time to run
parametric: Parametric tests across multiple scenarios
fast: Quick tests that run in under 1 second
main: Tests that cover functionality previously included in main.py
# Minimum Python version
minversion = 3.8
# Coverage options (when using pytest-cov)
# Run with: pytest --cov=lyopronto --cov-report=html