Spaces:
Sleeping
Sleeping
File size: 563 Bytes
c87f72b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | [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
|