Ignore warnings in ansible-test environment check.

This commit is contained in:
Matt Clay 2020-01-13 14:35:34 -08:00
parent 4fedc10035
commit 3db1ac4f56
2 changed files with 5 additions and 0 deletions
changelogs/fragments
test/lib/ansible_test/_data

View file

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

View file

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