mirror of
https://github.com/langchain-ai/tracing-claude-code.git
synced 2026-07-01 20:04:49 -04:00
29 lines
578 B
INI
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
|