[stable-2.9] Ignore warnings in ansible-test environment check.

(cherry picked from commit 3db1ac4f56)

Co-authored-by: Matt Clay <matt@mystile.com>
pull/66493/head
Matt Clay 6 years ago
parent 41df8ec8c2
commit a951e007df

@ -0,0 +1,2 @@
bugfixes:
- ansible-test now ignores warnings when comparing pip versions before and after integration tests run

@ -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

Loading…
Cancel
Save