From f212e55385143630f3b5f2c34a0bed8197015ae0 Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Fri, 2 Dec 2022 23:56:46 -0600 Subject: [PATCH] Re-enable image tests on Linux --- .github/workflows/test_rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_rust.yml b/.github/workflows/test_rust.yml index 649ef583b..8c4e979f6 100644 --- a/.github/workflows/test_rust.yml +++ b/.github/workflows/test_rust.yml @@ -77,13 +77,13 @@ jobs: RUSTDOCFLAGS: -D warnings - name: Run tests with image tests - if: runner.os == 'Windows' + if: runner.os == 'Linux' || runner.os == 'Windows' run: cargo test --locked --features imgtests env: XDG_RUNTIME_DIR: '' # dummy value, just to silence warnings about it missing - name: Run tests without image tests - if: ${{ !(runner.os == 'Windows') }} + if: ${{ !(runner.os == 'Linux' || runner.os == 'Windows') }} run: cargo test --locked - name: Upload images