Ignore warnings in ansible-test environment check.

pull/66452/head
Matt Clay 5 years ago
parent 4fedc10035
commit 3db1ac4f56

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