11 lines
232 B
INI
11 lines
232 B
INI
[tool:pytest]
|
|
# Simple pytest configuration for test discovery
|
|
|
|
# Test discovery patterns
|
|
python_files = test_*.py *_test.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
|
|
# Minimal options for discovery
|
|
addopts = --collect-only
|