From c07a1ec7183e3278e336441b3d95b9b91bc5c6a9 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 24 Oct 2023 00:35:17 +0200 Subject: [PATCH] Check running the GUI test without GUI in Unix CI builds This just checks that launching a GUI program and not initializing GUI in it works as expected and, notably, does not crash. --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1133342049..a44b2b6fb4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -344,6 +344,11 @@ jobs: exit $rc fi + - name: Testing launching GUI test + working-directory: tests + run: | + WX_TEST_DISABLE_GUI=1 ./test_gui + - name: Testing GUI using Xvfb if: matrix.use_xvfb working-directory: tests