mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-18 20:53:40 +08:00
pexpects: Disable 2 only on CI
As the comment says
This commit is contained in:
parent
9b9663ea44
commit
cb3fbd3a5c
|
@ -5,10 +5,7 @@ import sys
|
|||
import signal
|
||||
import platform
|
||||
|
||||
if platform.system() == "FreeBSD": # Spurious failure. TODO Only disable this in CI.
|
||||
sys.exit(127)
|
||||
|
||||
if "CI" in os.environ and platform.system() == "Darwin":
|
||||
if "CI" in os.environ and platform.system() in ["Darwin", "FreeBSD"]:
|
||||
sys.exit(127)
|
||||
|
||||
sp = SpawnedProc()
|
||||
|
|
|
@ -5,10 +5,7 @@ import signal
|
|||
import sys
|
||||
from pexpect_helper import SpawnedProc
|
||||
|
||||
if platform.system() == "FreeBSD": # Spurious failure. TODO Only disable this in CI.
|
||||
sys.exit(127)
|
||||
|
||||
if "CI" in os.environ and platform.system() == "Darwin":
|
||||
if "CI" in os.environ and platform.system() in ["Darwin", "FreeBSD"]:
|
||||
sys.exit(127)
|
||||
|
||||
sp = SpawnedProc()
|
||||
|
|
Loading…
Reference in New Issue
Block a user