Update .gitea/workflows/test.yml
Run CI Tests / test (push) Failing after 46s

This commit is contained in:
2025-08-23 15:44:15 +02:00
parent f9bb5eec90
commit d382c4e70c
+13 -2
View File
@@ -70,6 +70,7 @@ jobs:
ls ~/Maildir/new
session-wrapper: "dbus-run-session --"
pre-test-cmd: |
Xvfb :99 -screen 0 1024x768x24 &
XVFB_PID=$!
@@ -77,12 +78,22 @@ jobs:
dunst -print &
DUNST_PID=$!
sleep 1
test-run-cmd: tmux new-session -d -s ci "bash -lc 'eval \"$CMD\"; tmux wait-for -S done'"
test-run-cmd: |
tmux new-session -d -s ci "
TMUX_TTY=\$(tmux list-panes -t ci -F '#{pane_tty}');
export TMUX_TTY;
$CMD >> outputs/full-output.log 2>&1;
tmux wait-for -S done
"
sleep 1
tmux wait-for done
post-test-cmd: |
kill $DUNST_PID || true
kill $XVFB_PID || true
sleep 1
tmux wait-for done
test-files: "tests/test_utils_dbusnotify.py"