Skip to content

Commit

Permalink
Merge pull request #1632 from seifertm/ignore_pluggy_deprecation
Browse files Browse the repository at this point in the history
Tests no longer fail with a DeprecationWarning for users of pluggy<0.6.
  • Loading branch information
alexwlchan committed Oct 9, 2018
2 parents 23bd21b + 9fb3fcf commit 49b536e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions hypothesis-python/tests/common/setup.py
Expand Up @@ -33,6 +33,9 @@ def run():
filterwarnings('ignore', category=ImportWarning)
filterwarnings('ignore', category=FutureWarning, module='pandas._version')

# Fixed in recent versions but allowed by pytest=3.0.0; see #1630
filterwarnings('ignore', category=DeprecationWarning, module='pluggy')

# See https://github.com/numpy/numpy/pull/432
filterwarnings('ignore', message='numpy.dtype size changed')
filterwarnings('ignore', message='numpy.ufunc size changed')
Expand Down

0 comments on commit 49b536e

Please sign in to comment.