Skip to content

Commit

Permalink
Merge pull request #8001 from bluetech/silence-pyparsing-warning
Browse files Browse the repository at this point in the history
testing: silence deprecation warning from older pyparsing releases
  • Loading branch information
asottile committed Nov 5, 2020
2 parents 1d4cc7e + 070f8e0 commit 4cd0fde
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pyproject.toml
Expand Up @@ -23,6 +23,8 @@ xfail_strict = true
filterwarnings = [
"error",
"default:Using or importing the ABCs:DeprecationWarning:unittest2.*",
# produced by older pyparsing<=2.2.0.
"default:Using or importing the ABCs:DeprecationWarning:pyparsing.*",
"default:the imp module is deprecated in favour of importlib:DeprecationWarning:nose.*",
"ignore:Module already imported so cannot be rewritten:pytest.PytestWarning",
# produced by python3.6/site.py itself (3.6.7 on Travis, could not trigger it with 3.6.8)."
Expand Down

0 comments on commit 4cd0fde

Please sign in to comment.