forked from Tiny-Walnut-Games/the-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
32 lines (29 loc) · 998 Bytes
/
pytest.ini
File metadata and controls
32 lines (29 loc) · 998 Bytes
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
[pytest]
# pytest configuration for The Seed project
# Enables IDE test discovery in JetBrains Rider and other test runners
testpaths = tests Packages/com.twg.the-seed/The\ Living\ Dev\ Agent/tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Markers for organizing test categories
markers =
exp01: EXP-01 Address Uniqueness Tests
exp02: EXP-02 Retrieval Efficiency Tests
exp03: EXP-03 Dimension Necessity Tests
exp04: EXP-04 Fractal Scaling Tests
exp05: EXP-05 Compression/Expansion Tests
exp06: EXP-06 Entanglement Detection Tests
exp07: EXP-07 LUCA Bootstrap Tests
exp08: EXP-08 Warbler Integration Tests
exp09: EXP-09 Concurrency Tests
exp10: EXP-10 Narrative Preservation Tests
math: Mathematical validation tests
robustness: Robustness and stress tests
integration: Integration tests
slow: Slow running tests
# Output options
addopts =
-v
--tb=short
--strict-markers
--disable-warnings