Skip to content

Commit

Permalink
Merge pull request #8879 from jcsp/tests-installer-http-error
Browse files Browse the repository at this point in the history
tests: raise on HTTP errors in installer
  • Loading branch information
jcsp authored Feb 14, 2023
2 parents ec99595 + 9b6daff commit 8c4afc7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/rptest/services/redpanda_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ def _initialize_released_versions(self):
# releases when requested.
releases_resp = requests.get(
"https://api.github.com/repos/redpanda-data/redpanda/releases")
releases_resp.raise_for_status()
try:
self._released_versions = [
int_tuple(VERSION_RE.findall(f["tag_name"])[0])
Expand Down

0 comments on commit 8c4afc7

Please sign in to comment.