-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpytest.ini
More file actions
39 lines (34 loc) · 1.01 KB
/
Copy pathpytest.ini
File metadata and controls
39 lines (34 loc) · 1.01 KB
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
35
36
37
38
39
[pytest]
# Pytest configuration for AgentUp testing
# Test discovery
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Markers for test categorization
markers =
unit: Unit tests (fast, no external dependencies)
integration: Integration tests (slower, may use external services)
e2e: End-to-end tests (full system tests)
performance: Performance and load tests
security: Security-focused tests
mcp: MCP (Model Context Protocol) tests
a2a: A2A specification compliance tests
slow: Slow running tests
smoke: Quick smoke tests for basic functionality
fast: Fast-running tests (under 1 second)
stress: Stress and load tests
# Output settings
addopts =
--strict-markers
--strict-config
--verbose
--tb=short
# Asyncio settings for async tests
asyncio_mode = auto
# Warnings
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
ignore::UserWarning:httpx.*
ignore::pytest.PytestUnknownMarkWarning