-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
33 lines (29 loc) · 1.03 KB
/
Copy pathpytest.ini
File metadata and controls
33 lines (29 loc) · 1.03 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
32
33
# Space Telemetry Operations Test Configuration
[pytest]
# Test discovery
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Output configuration
addopts =
-v
--tb=short
--strict-markers
# Markers
markers =
unit: Unit tests for individual components
integration: Integration tests for system interactions
hot_path: HOT path (Redis) real-time processing tests
warm_path: Warm path (PostgreSQL) operational analytics tests
cold_path: Cold path (MinIO) long-term storage tests
analytics_path: Analytics path (Vector DB/ML) tests
space_commands: Space command processing tests
critical: Critical system tests that must pass for mission readiness
performance: Performance and load testing
slow: Tests that take longer than usual to run
requires_redis: Tests that require Redis to be available
requires_postgres: Tests that require PostgreSQL to be available
requires_minio: Tests that require MinIO to be available
# Minimum version
minversion = 6.0