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

This commit is contained in:
2025-08-19 14:59:26 +02:00
parent a0ab60b1ee
commit fc464e7d8c
+15 -1
View File
@@ -72,7 +72,21 @@ jobs:
# Then:
ls ~/Maildir/new
test-files: "tests/test_utils_duo.py"
pre-test-cmd: |
Xvfb :99 -screen 0 1024x768x24 &
XVFB_PID=$!
export DISPLAY=:99
dunst -print &
DUNST_PID=$!
sleep 1
test-run-cmd: "tmux new-session -d -s ci --"
post-test-cmd: |
kill $DUNST_PID || true
kill $XVFB_PID || true
sleep 1
tmux wait-for done
test-files: "tests/test_utils_dbusnotify.py"
continue-on-error: true