Merge pull request #8001 from bluetech/silence-pyparsing-warning
testing: silence deprecation warning from older pyparsing releases
This commit is contained in:
commit
4cd0fde277
|
@ -23,6 +23,8 @@ xfail_strict = true
|
||||||
filterwarnings = [
|
filterwarnings = [
|
||||||
"error",
|
"error",
|
||||||
"default:Using or importing the ABCs:DeprecationWarning:unittest2.*",
|
"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.*",
|
"default:the imp module is deprecated in favour of importlib:DeprecationWarning:nose.*",
|
||||||
"ignore:Module already imported so cannot be rewritten:pytest.PytestWarning",
|
"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)."
|
# produced by python3.6/site.py itself (3.6.7 on Travis, could not trigger it with 3.6.8)."
|
||||||
|
|
Loading…
Reference in New Issue