tests/pexpects/fish_indent_interrupt: skip in CI

This fails intermittently in CI. Disable it.  We disable a lot of
other tests as well which is why we run tests on developer machines
before pushing to master.

See #12351
This commit is contained in:
Johannes Altmanninger
2026-02-07 15:24:09 +11:00
parent 38e8416da5
commit bc84fe9407

View File

@@ -1,5 +1,9 @@
#!/usr/bin/env python3
from pexpect_helper import SpawnedProc
import os
if "CI" in os.environ:
sys.exit(127)
sp = SpawnedProc(timeout=2)
send, sendline, sleep, expect_prompt = (