pytest.ini 233 Bytes
Newer Older
zhouxiang's avatar
zhouxiang committed
1
2
3
4
5
6
7
8
[pytest]
python_files = test*_*.py  # test file
python_classes = Test*     # test class
python_functions = test_*  # test function
pytest_runtest_call.tryfirst = True
filterwarnings = ignore::UserWarning
reruns = 2
reruns_delay = 10