We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba9f52e commit af04b9fCopy full SHA for af04b9f
scripts/trigger_auto_tests/main.py
@@ -35,7 +35,8 @@ def main(tc_user: str, tc_password: str):
35
for shell_name in tests_info.supported_shells:
36
try:
37
build_id = _run_tests_for_shell(tc, tc_msg, shell_name, tests_info)
38
- triggered_builds[shell_name] = build_id
+ if build_id:
39
+ triggered_builds[shell_name] = build_id
40
except Exception as e:
41
errors.append(e)
42
click.echo(e, err=True)
0 commit comments