summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtests/run-tests3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/run-tests b/tests/run-tests
index 859e459fc..74e2f71ac 100755
--- a/tests/run-tests
+++ b/tests/run-tests
@@ -212,6 +212,9 @@ def run_micropython(pyb, args, test_file, is_special=False):
def run_feature_check(pyb, args, base_path, test_file):
+ if pyb is not None and test_file.startswith("repl_"):
+ # REPL feature tests will not run via pyboard because they require prompt interactivity
+ return b""
return run_micropython(pyb, args, base_path + "/feature_check/" + test_file, is_special=True)