Skip to content

Commit

Permalink
genral exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Sep 10, 2024
1 parent fd6a784 commit 30bbafe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spinnman_integration_tests/test_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def setUp(self):
def test_create_job(self):
try:
client = SpallocClient(self.spalloc_url)
except ConnectionError as ex:
raise unittest.skip(str(ex))
except Exception as ex:
raise Exception(str(type(ex)))
# job = client.create_job_rect_at_board(
# WIDTH, HEIGHT, triad=(x, y, b), machine_name=SPALLOC_MACHINE,
# max_dead_boards=1)
Expand Down

0 comments on commit 30bbafe

Please sign in to comment.