summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changelogs/fragments/ansible-test-ignore-pip-warnings.yml2
-rwxr-xr-xtest/runner/versions.py3
2 files changed, 5 insertions, 0 deletions
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 0000000000..e78aca3b19
--- /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/runner/versions.py b/test/runner/versions.py
index e2a5db8767..edf7a36afe 100755
--- a/test/runner/versions.py
+++ b/test/runner/versions.py
@@ -3,6 +3,9 @@
import os
import sys
+import warnings
+
+warnings.simplefilter('ignore') # avoid python version deprecation warnings when using newer pip dependencies
try:
import pip