diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/mac-build.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index 56886e0..33c97a9 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -115,6 +115,8 @@ jobs: run: | if [ $USE_XVFB == true ]; then function runXvfb { + rm /tmp/.X11-unix/X1 + rm /tmp/.X1 PATH=$PATH:/opt/X11/bin Xvfb $1 -nolisten unix & XVFB_PID=$! @@ -128,7 +130,7 @@ jobs: : do nothing } fi - ( runXvfb :1664; make test-classic test-ttk; exit $? ) | tee out.txt || { + ( runXvfb :1; make test-classic test-ttk; exit $? ) | tee out.txt || { echo "::error::Failure during Test" exit 1 } |