11 lines
320 B
INI
11 lines
320 B
INI
# pytest configuration file
|
|
[pytest]
|
|
# Collect tests.
|
|
# Collect tests from files matching file name pattern.
|
|
python_files = *_test.py *_test_sh.py
|
|
# Collect classes with names ending in Test.
|
|
python_classes = *Test
|
|
# Collect all functions.
|
|
python_functions = *
|
|
|
|
filterwarnings = ignore::pytest.PytestReturnNotNoneWarning |