From 4d8b2e189a4b97dc032a3d87f17dac32076aacb8 Mon Sep 17 00:00:00 2001 From: Guillermo Perez Date: Fri, 1 Mar 2024 10:48:18 +0100 Subject: [PATCH] simplier tarpaulin command --- .github/workflows/codecov.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index c10a7227e2..d8ec5446e2 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -30,9 +30,10 @@ jobs: env: RUST_BACKTRACE: 1 run: | - cargo tarpaulin --release --features fast-runtime --fail-under 10 \ - --no-fail-fast --workspace --timeout 3600 --engine llvm \ - --exclude-files **/mock.rs **/weights.rs **/weights/* --out xml --out html + # cargo tarpaulin --release --features fast-runtime --fail-under 10 \ + # --no-fail-fast --workspace --timeout 3600 --engine llvm \ + # --exclude-files **/mock.rs **/weights.rs **/weights/* --out xml --out html + cargo tarpaulin --workspace -v --exclude-files **/mock.rs **/weights.rs **/weights/* --out xml ls -la # UPLOAD REPORTS (requires cargo 1.70.0) @@ -46,5 +47,5 @@ jobs: # files: ./coverage1.xml,./coverage2.xml # optional # flags: unittests # optional # name: codecov-umbrella # optional - # fail_ci_if_error: true # optional (default = false) + fail_ci_if_error: true # optional (default = false) verbose: true # optional (default = false)