17 lines
503 B
INI
17 lines
503 B
INI
[tool:pytest]
|
|
# Simple pytest configuration for Composio integration tests
|
|
|
|
testpaths = .
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
|
|
# Add timeout and other options
|
|
# --timeout=120: Each test gets max 2 minutes
|
|
# --timeout-method=thread: Use thread-based timeout (works cross-platform)
|
|
addopts = -v --tb=short --timeout=120 --timeout-method=thread
|
|
|
|
markers =
|
|
slow: marks tests as slow (deselect with '-m "not slow"')
|
|
integration: marks tests as integration tests
|