Skip to content
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
1 change: 1 addition & 0 deletions launchable/commands/subset.py
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,7 @@ def request_subset(self) -> SubsetResult:
# The status code 422 is returned when validation error of the test mapping file occurs.
if res.status_code == 422:
print_error_and_die("Error: {}".format(res.reason), Tracking.ErrorEvent.USER_ERROR)
res.raise_for_status()

return SubsetResult.from_response(res.json())
except Exception as e:
Expand Down
Loading