Spaces:
Sleeping
Sleeping
| [pytest] | |
| # Pytest configuration for VAMGUARD_TITAN | |
| python_files = test_*.py | |
| python_classes = Test* | |
| python_functions = test_* | |
| testpaths = tests | |
| addopts = | |
| -v | |
| --strict-markers | |
| --tb=short | |
| --cov=. | |
| --cov-report=term-missing | |
| --cov-report=html | |
| --cov-report=xml | |
| --cov-exclude=tests/* | |
| --cov-exclude=.venv/* | |
| --cov-exclude=venv/* | |
| markers = | |
| unit: Unit tests | |
| integration: Integration tests | |
| slow: Slow running tests | |
| requires_network: Tests requiring network access | |
| requires_hf_token: Tests requiring HuggingFace token | |