-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
23 lines (23 loc) · 889 Bytes
/
pytest.ini
File metadata and controls
23 lines (23 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[pytest]
minversion = 7.0
testpaths = packages src
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-ra
--strict-config
--cov=packages
--cov-report=term-missing:skip-covered
--cov-report=html
--cov-report=xml
-v
markers =
ml: Tests requiring ML dependencies (torch, sentence-transformers) - skip if not installed
slow: Tests with runtime >5s - tracked for optimization opportunities
real_api: Tests calling external APIs - skip in CI, run manually for integration verification
integration: Integration tests that test interactions between multiple components
e2e: End-to-end tests that test complete user workflows
unit: Unit tests that test individual components in isolation
performance: Performance and regression tests for startup/runtime benchmarks
startup: Startup time performance tests