mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-19 05:13:44 +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 signal
|
||||||
import platform
|
import platform
|
||||||
|
|
||||||
if platform.system() == "FreeBSD": # Spurious failure. TODO Only disable this in CI.
|
if "CI" in os.environ and platform.system() in ["Darwin", "FreeBSD"]:
|
||||||
sys.exit(127)
|
|
||||||
|
|
||||||
if "CI" in os.environ and platform.system() == "Darwin":
|
|
||||||
sys.exit(127)
|
sys.exit(127)
|
||||||
|
|
||||||
sp = SpawnedProc()
|
sp = SpawnedProc()
|
||||||
|
|
|
@ -5,10 +5,7 @@ import signal
|
||||||
import sys
|
import sys
|
||||||
from pexpect_helper import SpawnedProc
|
from pexpect_helper import SpawnedProc
|
||||||
|
|
||||||
if platform.system() == "FreeBSD": # Spurious failure. TODO Only disable this in CI.
|
if "CI" in os.environ and platform.system() in ["Darwin", "FreeBSD"]:
|
||||||
sys.exit(127)
|
|
||||||
|
|
||||||
if "CI" in os.environ and platform.system() == "Darwin":
|
|
||||||
sys.exit(127)
|
sys.exit(127)
|
||||||
|
|
||||||
sp = SpawnedProc()
|
sp = SpawnedProc()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user