20 lines
395 B
INI
20 lines
395 B
INI
[tool:pytest]
|
|
# pytest configuration for AITBC
|
|
|
|
# Test discovery
|
|
python_files = test_*.py *_test.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
|
|
# Additional options for local testing
|
|
addopts =
|
|
--verbose
|
|
--tb=short
|
|
|
|
# Warnings
|
|
filterwarnings =
|
|
ignore::UserWarning
|
|
ignore::DeprecationWarning
|
|
ignore::PendingDeprecationWarning
|
|
ignore::pytest.PytestUnknownMarkWarning
|