Skip to content

Commit 5ff85c6

Browse files
committed
config: add E2E pytest markers to pyproject.toml
Add pytest markers for E2E test categories: - e2e: End-to-end tests with real model/database - e2e_slow: Slow E2E tests (model loading) - e2e_multidb: Multi-database E2E tests - e2e_streaming: Streaming endpoint E2E tests - e2e_performance: Performance benchmark E2E tests Implements Issue #43 Phase 1.
1 parent 1ea617c commit 5ff85c6

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,11 @@ markers = [
187187
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
188188
"integration: marks tests as integration tests",
189189
"unit: marks tests as unit tests",
190+
"e2e: End-to-end tests with real model/database",
191+
"e2e_slow: Slow E2E tests (model loading)",
192+
"e2e_multidb: Multi-database E2E tests",
193+
"e2e_streaming: Streaming endpoint E2E tests",
194+
"e2e_performance: Performance benchmark E2E tests",
190195
]
191196

192197
# Coverage configuration

0 commit comments

Comments
 (0)