diff --git a/changelogs/fragments/ansible-test-ignore-pip-warnings.yml b/changelogs/fragments/ansible-test-ignore-pip-warnings.yml new file mode 100644 index 00000000000..e78aca3b195 --- /dev/null +++ b/changelogs/fragments/ansible-test-ignore-pip-warnings.yml @@ -0,0 +1,2 @@ +bugfixes: + - ansible-test now ignores warnings when comparing pip versions before and after integration tests run diff --git a/test/lib/ansible_test/_data/versions.py b/test/lib/ansible_test/_data/versions.py index 06729720ed6..4babef01623 100755 --- a/test/lib/ansible_test/_data/versions.py +++ b/test/lib/ansible_test/_data/versions.py @@ -5,6 +5,9 @@ __metaclass__ = type import os import sys +import warnings + +warnings.simplefilter('ignore') # avoid python version deprecation warnings when using newer pip dependencies try: import pip