From 4c416e0b25272e1c67770e689c808231a3220d5b Mon Sep 17 00:00:00 2001 From: Jose Celano Date: Fri, 19 Jan 2024 15:45:01 +0000 Subject: [PATCH] fix: remove coverage report generation from testing workflow The coverage report is also generated in the coverage workflow. And it takes long. --- .github/workflows/testing.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/testing.yaml b/.github/workflows/testing.yaml index d9d0c60c..02dbb180 100644 --- a/.github/workflows/testing.yaml +++ b/.github/workflows/testing.yaml @@ -110,7 +110,3 @@ jobs: - id: test name: Run Unit Tests run: cargo test --tests --benches --examples --workspace --all-targets --all-features - - - id: coverage - name: Generate Coverage Report - run: cargo llvm-cov nextest --tests --benches --examples --workspace --all-targets --all-features