From 045a615e5a20dff87e36850aa849e34472c23e92 Mon Sep 17 00:00:00 2001 From: Mateusz Bloch Date: Wed, 12 Jun 2024 13:44:55 +0200 Subject: [PATCH] psh: enable executing tests in new psh for imxrt117x JIRA: CI-461 --- psh/tools/psh.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/psh/tools/psh.py b/psh/tools/psh.py index 43e76023..700761ad 100644 --- a/psh/tools/psh.py +++ b/psh/tools/psh.py @@ -289,12 +289,6 @@ def run(harness): @functools.wraps(harness) def wrapper_harness(*args, **kwargs): dut = args[0] - # to avoid CI fails caused by https://github.com/phoenix-rtos/phoenix-rtos-project/issues/866 - if trunner.ctx.target.name == "armv7m7-imxrt117x-evk": - ret = harness(*args, **kwargs) - # one prompt after a test should be left to be asserted by test runner - dut.sendline("\n") - return ret init(dut) try: res = harness(*args, **kwargs)