Spaces:
Running
Running
| [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 | |