update test to support non-latest in integration test
This commit is contained in:
parent
8ae71775f2
commit
092858c205
1 changed files with 4 additions and 1 deletions
|
@ -18,7 +18,10 @@ except Exception as ex:
|
||||||
sys.exit('kubectl not installed')
|
sys.exit('kubectl not installed')
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if version_to_check == 'latest':
|
if version_to_check[0] == '!':
|
||||||
|
print(f'version_to_check: {version_to_check}')
|
||||||
|
PASSED = True if installed_version_info['clientVersion']['gitVersion'] != version_to_check[1:] else False
|
||||||
|
elif version_to_check == 'latest':
|
||||||
response = None
|
response = None
|
||||||
time_to_sleep = 2
|
time_to_sleep = 2
|
||||||
for _ in range(10):
|
for _ in range(10):
|
||||||
|
|
Loading…
Add table
Reference in a new issue