diff options
author | Ćukasz Langa <lukasz@langa.pl> | 2024-06-03 15:32:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-03 15:32:40 (GMT) |
commit | 6acb32fac3511c1d5500cac66f1d6397dcdab835 (patch) | |
tree | 1005cbc572340df38f0c911125a5d6fe0907f569 /Lib/test/test_pyrepl/test_windows_console.py | |
parent | 42a34ddb0b63e638905b01e17a7254623a0de427 (diff) | |
download | cpython-6acb32fac3511c1d5500cac66f1d6397dcdab835.zip cpython-6acb32fac3511c1d5500cac66f1d6397dcdab835.tar.gz cpython-6acb32fac3511c1d5500cac66f1d6397dcdab835.tar.bz2 |
Use Cirrus M1 macOS runners for CI (GH-119979)
Co-authored-by: Ee Durbin <ee@python.org>
Diffstat (limited to 'Lib/test/test_pyrepl/test_windows_console.py')
-rw-r--r-- | Lib/test/test_pyrepl/test_windows_console.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pyrepl/test_windows_console.py b/Lib/test/test_pyrepl/test_windows_console.py index e52a54d..4a3b2ba 100644 --- a/Lib/test/test_pyrepl/test_windows_console.py +++ b/Lib/test/test_pyrepl/test_windows_console.py @@ -1,7 +1,7 @@ import sys import unittest -if sys.platform != 'win32': +if sys.platform != "win32": raise unittest.SkipTest("test only relevant on win32") |