From 3cb911a618211c18cca07a83302b4ab9e2cec597 Mon Sep 17 00:00:00 2001 From: Mateusz Bloch Date: Tue, 18 Jun 2024 14:59:01 +0200 Subject: [PATCH] trunner: disable rebooting each test It is enabled due to the following issue resolution: phoenix-rtos/phoenix-rtos-project#580 JIRA: CI-461 --- trunner/target/armv7m7.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/trunner/target/armv7m7.py b/trunner/target/armv7m7.py index 1ec50c64d..f4162ea3a 100644 --- a/trunner/target/armv7m7.py +++ b/trunner/target/armv7m7.py @@ -102,9 +102,3 @@ class IMXRT106xEvkTarget(IMXTarget): class IMXRT117xEvkTarget(IMXTarget): name = "armv7m7-imxrt117x-evk" image = PloImageProperty(file="phoenix.disk", source="usb0", memory_bank="flash0") - - def build_test(self, test: TestOptions) -> Callable[[TestResult], TestResult]: - # FIXME due to https://github.com/phoenix-rtos/phoenix-rtos-project/issues/580 always reboot - test.should_reboot = True - - return super().build_test(test)