Skip to content

Commit af04b9f

Browse files
committed
fix not wait for ignored tests
1 parent ba9f52e commit af04b9f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/trigger_auto_tests/main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ def main(tc_user: str, tc_password: str):
3535
for shell_name in tests_info.supported_shells:
3636
try:
3737
build_id = _run_tests_for_shell(tc, tc_msg, shell_name, tests_info)
38-
triggered_builds[shell_name] = build_id
38+
if build_id:
39+
triggered_builds[shell_name] = build_id
3940
except Exception as e:
4041
errors.append(e)
4142
click.echo(e, err=True)

0 commit comments

Comments
 (0)