-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpytest.ini
More file actions
29 lines (29 loc) · 1.18 KB
/
pytest.ini
File metadata and controls
29 lines (29 loc) · 1.18 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
[pytest]
testpaths = tests .github/scripts/tests
pythonpath = src .github/scripts
addopts =
-v
--tb=short
--strict-markers
--disable-warnings
markers =
unit: Unit tests (fast, isolated)
integration: Integration tests (moderate speed)
e2e: End-to-end tests (slow, full workflows)
performance: Performance and benchmarking tests
slow: Tests that take > 1 second
requires_sdk: mark test as requiring SDK connection
requires_docker: Tests requiring Docker daemon
requires_platform: Tests requiring platform CLI integration
gadugi: Gadugi framework tests
flaky: Tests with potential race conditions or timing issues
subprocess: Tests involving subprocess execution
orchestration: Tests involving orchestration workflows
agent_learning: Tests covering agent learning behavior
agents: Tests covering agent-related uvx flows
commands: Tests covering command-related uvx flows
hooks: Tests covering hook-related uvx flows
lsp: Tests covering language-server-related uvx flows
settings: Tests covering settings generation uvx flows
skills: Tests covering skill-related uvx flows
uvx: Tests covering uvx-installed CLI surfaces