diff --git a/.github/actions/run_tests/action.yml b/.github/actions/run_tests/action.yml index cbd5700cd1..82fd02cb70 100644 --- a/.github/actions/run_tests/action.yml +++ b/.github/actions/run_tests/action.yml @@ -20,4 +20,4 @@ runs: - name: Run tests shell: bash -euxo pipefail {0} - run: xvfb-run --auto-servernum cargo nextest run --workspace --no-fail-fast + run: xvfb-run cargo nextest run --workspace --no-fail-fast diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8816c39c05..02bd149db2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -290,10 +290,10 @@ jobs: mkdir -p ./../.cargo cp ./.cargo/ci-config.toml ./../.cargo/config.toml - - name: Start xvfb - run: | - export DISPLAY=:99 - Xvfb :99 -screen 0 1024x768x24 & + # - name: Start xvfb + # run: | + # export DISPLAY=:99 + # Xvfb :99 -screen 0 1024x768x24 & - name: cargo clippy run: ./script/clippy