Add a new salt 'failed' condition check
diff --git a/tcp_tests/managers/execute_commands.py b/tcp_tests/managers/execute_commands.py
index 03265c1..de9ab3b 100644
--- a/tcp_tests/managers/execute_commands.py
+++ b/tcp_tests/managers/execute_commands.py
@@ -116,6 +116,10 @@
for s in result['stdout']:
if s.startswith("Failed:"):
failed += int(s.split("Failed:")[1])
+ if 'Minion did not return. [No response]' in s:
+ failed += 1
+ if s.startswith("[CRITICAL]"):
+ failed += 1
if result.exit_code != 0:
time.sleep(retry_delay)