One more FreeBSD-only-in-CI

This commit is contained in:
Fabian Boehm 2024-12-15 17:38:37 +01:00
parent 8add30e3bf
commit 95f4c9c07e

View file

@ -18,10 +18,7 @@ import signal
import subprocess import subprocess
import sys import sys
if "CI" in os.environ and platform.system() == "Darwin": if "CI" in os.environ and platform.system() in ["Darwin", "FreeBSD"]:
sys.exit(127)
if platform.system() == "FreeBSD": # Spurious failure. TODO Only disable this in CI.
sys.exit(127) sys.exit(127)
expect_prompt() expect_prompt()