-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpytest.ini
More file actions
43 lines (37 loc) · 834 Bytes
/
pytest.ini
File metadata and controls
43 lines (37 loc) · 834 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
35
36
37
38
39
40
41
42
43
[pytest]
# Pytest configuration for OmniClaw tests
minversion = 6.0
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Test output options
addopts =
-v
--strict-markers
--tb=short
--color=yes
-p no:warnings
-p no:pytest_ethereum
# Markers for test organization
markers =
unit: Unit tests
integration: Integration tests
slow: Slow-running tests
requires_api: Tests that require Circle API access
cctp: CCTP-related tests
x402: x402 protocol tests
utils: Utility function tests
# Asyncio configuration
asyncio_mode = auto
# Coverage options (if pytest-cov is installed)
[coverage:run]
source = src/omniclaw
omit =
*/tests/*
*/examples/*
*/scripts/*
[coverage:report]
precision = 2
skip_empty = True
show_missing = True