-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
28 lines (26 loc) · 864 Bytes
/
pytest.ini
File metadata and controls
28 lines (26 loc) · 864 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
[pytest]
# Test discovery
norecursedirs = scripts .git .local_backups .model_backups .pytest_cache
pythonpath = .
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Markers for test categorization
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
code: unit tests for code correctness
data_quality: tests for training data quality
model_quality: tests for trained model performance
integration: end-to-end pipeline tests
stage0: Stage 0 (Parser) tests
stage1: Stage 1 (Root Embeddings) tests
stage2: Stage 2 (M1 Selectional Preference) tests
requires_model: tests that require a trained model
requires_data: tests that require downloaded/processed data
# Output options
console_output_style = progress
addopts =
--strict-markers
--tb=short
--disable-warnings
-ra