mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-25 06:41:15 -03:00
pexpects: Disable 2 only on CI
As the comment says
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user