From 9e8a90649c69b697e6f1c77ce3a7a963103aec02 Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Sat, 4 Feb 2023 15:27:02 -0800 Subject: [PATCH] Run normal (not ignored) tests on Linux CI Fixes #480 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1698ae474..d99b30fdd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,10 +9,10 @@ jobs: steps: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@1.57.0 + - run: cargo test # This also runs tests that rely on the MIME database being # present. - - name: Run all tests, including ignored tests - run: cargo test -- --ignored + - run: cargo test -- --ignored test_linux_latest_stable: name: Test Linux (latest stable Rust)