Skip to content

Commit

Permalink
Warn only if app is not found, but do not fail the test
Browse files Browse the repository at this point in the history
  • Loading branch information
sunetfreitag committed May 21, 2024
1 parent 78a8070 commit bdf08c3
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions test_apps_ocs.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,7 @@ def run(self):
logger.info(f'Found app at {pos}')
g_testPassed[fullnode] = True
except:
logger.error(f'App {expectedApp} NOT found on {fullnode}')
g_testThreadsRunning -= 1
return
logger.warning(f'App {expectedApp} NOT found on {fullnode}')

logger.info(f'ConfiguredAppsInstalled thread done for node {self.name}')
g_testThreadsRunning -= 1
Expand Down Expand Up @@ -120,8 +118,6 @@ def run(self):
g_testPassed[fullnode] = True
except:
logger.warning(f'{nodeApp} NOT found on {fullnode}')
g_testThreadsRunning -= 1
return

else: # Check if specific app is installed/active
try:
Expand Down

0 comments on commit bdf08c3

Please sign in to comment.