diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-04 13:21:39 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-04 13:21:46 -0700 |
commit | d5309e6e2d8d8cd4244e24ac1773ce76434ce46d (patch) | |
tree | e5d97e44d5786f72c7b8275fafce69db424481f0 /python/pytest.ini | |
parent | 7d90315279d02b0d02d566a2b84231986bc43e59 (diff) | |
download | fatcat-d5309e6e2d8d8cd4244e24ac1773ce76434ce46d.tar.gz fatcat-d5309e6e2d8d8cd4244e24ac1773ce76434ce46d.zip |
pytest improvements: squelch raven deprecation; run pylint
Diffstat (limited to 'python/pytest.ini')
-rw-r--r-- | python/pytest.ini | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/python/pytest.ini b/python/pytest.ini index afdebabc..1acfdfc8 100644 --- a/python/pytest.ini +++ b/python/pytest.ini @@ -1,10 +1,12 @@ - [pytest] ignore = setup.py -# allow imports from files in current directory python_paths = . # search for 'test_*' functions in all python files, not just under tests python_files = *.py + +addopts = --pylint --pylint-rcfile=.pylintrc --pylint-error-types=EF --pylint-jobs=4 + +filterwarnings = ignore:.*common_exception_handling.*StopIteration:PendingDeprecationWarning |