From c254603eaa53d2341029ee0aef81d91812fd0a8e Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Thu, 9 Sep 2021 20:08:35 -0400 Subject: [PATCH] Reraise HTTP exceptions --- system_test/full_system_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/system_test/full_system_test.py b/system_test/full_system_test.py index 919298be..a044b5c6 100755 --- a/system_test/full_system_test.py +++ b/system_test/full_system_test.py @@ -315,6 +315,7 @@ def raise_for_status(r): except requests.exceptions.HTTPError as e: print(e) print(r.text) + raise e def random_addr(): s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)