From a8f7fc675808363b05bdf5da427ff96c0f14afd8 Mon Sep 17 00:00:00 2001 From: mitsubosh Date: Fri, 22 Mar 2024 16:34:29 +0900 Subject: [PATCH] Fix CI --- .github/workflows/test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7950185..925ff38 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,6 +28,8 @@ jobs: with: toolchain: ${{ matrix.rust }} - name: Install dependency - run: sudo apt-get update && sudo apt-get install -y xsel + run: sudo apt-get update && sudo apt-get install -y xvfb xsel + - name: Setup X11 + run: sudo xvfb-run x.org_application_binary - name: Run test - run: cargo test -- --test-threads=1 # FIXME \ No newline at end of file + run: RUST_BACKTRACE=1 cargo test -- --test-threads=1 --test cb # FIXME \ No newline at end of file