Spaces:
Build error
Build error
File size: 431 Bytes
ccf0441 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
[pytest]
# Pytest configuration
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Output options
addopts =
-v
--strict-markers
--tb=short
--disable-warnings
# Coverage options (cuando se use pytest-cov)
# addopts += --cov=app --cov-report=html --cov-report=term-missing
# Markers
markers =
unit: Unit tests
integration: Integration tests
slow: Slow tests
|