From 7d34236f0ce1886a9261a5e5d3e8f6e67d719d02 Mon Sep 17 00:00:00 2001 From: Diana Carvalho Date: Thu, 23 Jan 2025 11:31:58 +0000 Subject: [PATCH] ci: Don't run tests with --all-features flag This was running the test that should be skipped in CI and it is flagged as #[cfg_attr(not(feature = "fork-tests"), ignore)] --- don't change below this line --- ENG-4063 Took 6 minutes --- .github/workflows/tests-and-lints-template.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests-and-lints-template.yaml b/.github/workflows/tests-and-lints-template.yaml index 3a6985f..e39c451 100644 --- a/.github/workflows/tests-and-lints-template.yaml +++ b/.github/workflows/tests-and-lints-template.yaml @@ -70,7 +70,7 @@ jobs: uses: taiki-e/install-action@nextest - name: Test - run: cargo nextest run --workspace --lib --all-targets --all-features && cargo test --doc + run: cargo nextest run --workspace --lib --all-targets && cargo test --doc lint: name: Code Lint