Ignore warnings in ansible-test environment check.
This commit is contained in:
parent
4fedc10035
commit
3db1ac4f56
2 changed files with 5 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue