-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpytest.ini
More file actions
34 lines (28 loc) · 827 Bytes
/
Copy pathpytest.ini
File metadata and controls
34 lines (28 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[pytest]
# Pytest configuration for agentproxy
# Test discovery
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Output options
addopts =
-v
--tb=short
--strict-markers
--disable-warnings
# Markers for test organization
markers =
unit: Unit tests (fast, no external dependencies)
integration: Integration tests (require docker compose)
slow: Slow tests (may take >10 seconds)
requires_gemini: Tests that require GEMINI_API_KEY
# Coverage options (if pytest-cov is installed)
# addopts = --cov=agentproxy --cov-report=html --cov-report=term
# Logging
log_cli = false
log_cli_level = INFO
log_cli_format = %(asctime)s [%(levelname)8s] %(message)s
log_cli_date_format = %Y-%m-%d %H:%M:%S
# Timeout (if pytest-timeout is installed)
# timeout = 300