Disable some more tests under CI

tmux-commandline can fail with

```
prompt 4>     commandline -i "echo $(printf %0"$COLUMNS"d)"
```

And I just can't even.

job_summary is annoyingly tight.

Also count cancel_event as a *skip*, not success.
This commit is contained in:
Fabian Boehm
2025-01-14 20:29:48 +01:00
parent 28233b0711
commit 2508cc9de6
3 changed files with 6 additions and 4 deletions

View File

@@ -2,6 +2,8 @@
#REQUIRES: command -v tmux #REQUIRES: command -v tmux
# Somehow $LINES is borked on NetBSD? # Somehow $LINES is borked on NetBSD?
#REQUIRES: test $(uname) != NetBSD #REQUIRES: test $(uname) != NetBSD
# Haunted under CI
#REQUIRES: test -z "$CI"
set -g isolated_tmux_fish_extra_args -C ' set -g isolated_tmux_fish_extra_args -C '
bind ctrl-q "functions --erase fish_right_prompt" "commandline \'\'" clear-screen bind ctrl-q "functions --erase fish_right_prompt" "commandline \'\'" clear-screen

View File

@@ -21,7 +21,7 @@ if "CI" in os.environ:
import sys import sys
print("SKIPPING cancel_event.py") print("SKIPPING cancel_event.py")
sys.exit(0) sys.exit(127)
# Verify that cancel-commandline does what we expect - see #7384. # Verify that cancel-commandline does what we expect - see #7384.
send("not executed") send("not executed")

View File

@@ -17,9 +17,9 @@ import os
import signal import signal
import sys import sys
# Disable under SAN - keeps failing because the timing is too tight # Disable under CI - keeps failing because the timing is too tight
if "FISH_CI_SAN" in os.environ: if "CI" in os.environ:
sys.exit(0) sys.exit(127)
# Test job summary for interactive shells. # Test job summary for interactive shells.
expect_prompt() expect_prompt()