From 8b17cb38af346fc871ad3d87fc7ae83078043bf7 Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Wed, 11 Oct 2023 07:18:14 +0100 Subject: [PATCH] SkipTest must have a reason --- .../test_0_1_time_steps/test_allow_violate/test_allow.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spynnaker_integration_tests/test_0_1_time_steps/test_allow_violate/test_allow.py b/spynnaker_integration_tests/test_0_1_time_steps/test_allow_violate/test_allow.py index 52a03339d6..6e541182b9 100644 --- a/spynnaker_integration_tests/test_0_1_time_steps/test_allow_violate/test_allow.py +++ b/spynnaker_integration_tests/test_0_1_time_steps/test_allow_violate/test_allow.py @@ -43,7 +43,8 @@ def allow(self): # no check of gsyn as the system overloads # System intentional overload so may error except SpinnmanTimeoutException as ex: - SpynnakerDataView.raise_skiptest(parent=ex) + SpynnakerDataView.raise_skiptest( + "Overload caused timeout", parent=ex) def test_allow(self): self.runsafe(self.allow)