Skip to content
This repository has been archived by the owner on Jan 31, 2025. It is now read-only.

Return 1 when no test cases are found #98

Merged
merged 1 commit into from
Dec 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/osbuild-image-test
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def run_tests_cases(args):
success = True
if not tests:
print(f"{RED}FAIL{RESET}: no tests to run")
return False
return 1
jrusz marked this conversation as resolved.
Show resolved Hide resolved

# compute the bucket of tests this instance is gonna run.
# by default, the bucket size is the entire test set and the bucket number
Expand Down
Loading