Test premium Mac builders (#118672)

This commit is contained in:
Łukasz Langa 2024-05-07 00:08:17 +02:00 committed by GitHub
parent 2ba2c142a6
commit 9fd33af5ac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 5 deletions

View file

@ -15,9 +15,9 @@
# Optionally test pyrepl. This currently requires that the
# 'curses' resource be given on the regrtest command line using the -u
# option. Additionally, we need to attempt to import curses and readline.
requires('curses')
curses = import_module('curses')
readline = import_module('readline')
requires("curses")
curses = import_module("curses")
readline = import_module("readline")
from _pyrepl.console import Console, Event
from _pyrepl.readline import ReadlineAlikeReader, ReadlineConfig