Files
tracing-claude-code/pytest.ini
T
Tanushree Sharma 673fbf92e5 add tests
2025-12-29 17:39:59 -05:00

29 lines
578 B
INI

[pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Markers for test categorization
markers =
unit: Unit tests for individual functions
integration: Integration tests requiring API calls
slow: Tests that take >5 seconds
# Integration tests disabled by default (require API key)
addopts =
-v
--tb=short
--strict-markers
-m "not integration"
--cov=tests
--cov-report=html
--cov-report=term-missing
# Timeout for tests
timeout = 60
# Capture output
log_cli = false
log_cli_level = INFO