Spaces:
Sleeping
Sleeping
File size: 222 Bytes
ae9c02f | 1 2 3 4 5 6 7 8 9 10 11 12 | # Pytest configuration file
[pytest]
testpaths = .
python_files = test_*.py
python_functions = test_*
python_classes = Test*
addopts = -v --tb=short
filterwarnings =
ignore::DeprecationWarning
ignore::UserWarning
|