Skip to content

Commit

Permalink
Disable deprecation warnings from own dependencies (#2289)
Browse files Browse the repository at this point in the history
Once we assure we have an upstream bug track we track, we can disable
deprecation warnings from dependencies producing them.

If they do not fix them we should consider finding a way to drop these
dependencies.

Signed-off-by: Sorin Sbarnea <[email protected]>
  • Loading branch information
ssbarnea authored Sep 15, 2019
1 parent 3b8c8d0 commit b1a3041
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ junit_suite_name = molecule_test_suite
norecursedirs = dist doc build .tox .eggs molecule/test/scenarios molecule/test/resources
testpaths = molecule/test/
filterwarnings =
# remove once https://github.com/boto/boto3/pull/1603 is released
ignore::DeprecationWarning:boto3
# remove once https://github.com/boto/botocore/issues/1615 is released
ignore::DeprecationWarning:botocore
# remove once https://github.com/cookiecutter/cookiecutter/pull/1127 is released
ignore::DeprecationWarning:cookiecutter
# remove once https://github.com/pytest-dev/pytest-cov/issues/327 is released
ignore::pytest.PytestWarning:pytest_cov
# remove once https://bitbucket.org/astanin/python-tabulate/issues/174/invalid-escape-sequence
ignore::DeprecationWarning:tabulate

0 comments on commit b1a3041

Please sign in to comment.