We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c1305fd + 4c867ec commit 07b7c57Copy full SHA for 07b7c57
1 file changed
launchable/commands/subset.py
@@ -560,6 +560,7 @@ def request_subset(self) -> SubsetResult:
560
# The status code 422 is returned when validation error of the test mapping file occurs.
561
if res.status_code == 422:
562
print_error_and_die("Error: {}".format(res.reason), Tracking.ErrorEvent.USER_ERROR)
563
+ res.raise_for_status()
564
565
return SubsetResult.from_response(res.json())
566
except Exception as e:
0 commit comments