summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtests/run-tests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py
index 6f3c09d1d..f9a16283b 100755
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -109,6 +109,10 @@ def run_micropython(pyb, args, test_file, is_special=False):
return b"SKIP\n"
import select
+ # Even though these might have the pty module, it's unlikely to function.
+ if sys.platform in ["win32", "msys", "cygwin"]:
+ return b"SKIP\n"
+
def get(required=False):
rv = b""
while True: