blob: f39612c33fff19328c6304624a2af612c3a54ed5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
[pytest]
# search for 'test_*' functions in all python files, not just under tests
python_files = test_*.py tests/*.py fatcat_scholar/*.py
# TODO:
#addopts = --pylint --pylint-rcfile=.pylintrc --pylint-error-types=EF --pylint-jobs=4
filterwarnings =
ignore:Using or importing the ABCs.*:DeprecationWarning
ignore:Using 'method_whitelist' with Retry*:DeprecationWarning
ignore:Using 'Retry.DEFAULT_METHOD_WHITELIST' is deprecated*:DeprecationWarning
log_level = INFO
|