-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini.backup
More file actions
31 lines (31 loc) · 1.16 KB
/
pytest.ini.backup
File metadata and controls
31 lines (31 loc) · 1.16 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
[pytest]
minversion = 7.0
testpaths = tests
norecursedirs = tests/archive
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-ra
--strict-markers
--strict-config
--cov=packages
--cov-report=term-missing:skip-covered
--cov-report=html
--cov-report=xml
-v
markers =
unit: Unit tests that test individual components in isolation
integration: Integration tests that test multiple components together
performance: Performance benchmark tests
slow: Tests that take longer than 1 second to run
real_api: Tests that make real API calls and incur costs
ml: Tests requiring ML dependencies (torch, sentence-transformers)
e2e: End-to-end tests that require external services (API keys, etc.)
critical: Critical tests that must pass for core functionality (user experience, core logic)
safety: Tests for security, safety, and robustness
cli: Tests for CLI functionality and user interactions
mcp: Tests for MCP server and tools
soar: Tests for SOAR pipeline components and phases
core: Tests for core storage and activation functionality
fast: Tests that take less than 100ms to run