summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2020-01-13 14:35:34 -0800
committerMatt Clay <matt@mystile.com>2020-01-14 08:50:28 -0800
commit7c7d33400680f8e411984242adfc4f9915f09af1 (patch)
tree538b6818284561acdd9de3ccbc2981c3c1248368
parent4d21c90427244b6c3d6dd7d8474df864d89c66ee (diff)
downloadansible-7c7d33400680f8e411984242adfc4f9915f09af1.tar.gz
[stable-2.7] Ignore warnings in ansible-test environment check.
(cherry picked from commit 3db1ac4f56cfd781bc531c5223c7fe748994c588) Co-authored-by: Matt Clay <matt@mystile.com>
-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