Spaces:
Running
Running
File size: 594 Bytes
e4eb82b |
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 |
[pytest]
# Pytest Configuration
# Test discovery patterns
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Test paths
testpaths = tests
# Output options
addopts =
-v
--strict-markers
--tb=short
--cov=lib
--cov-report=term-missing
--cov-report=html
--cov-fail-under=60
# Markers for organizing tests
markers =
unit: Unit tests for individual components
integration: Integration tests for API endpoints
security: Security feature tests
slow: Tests that take longer to run
# Logging
log_cli = true
log_cli_level = INFO
|