From b95923bf5e1066cee44651581c7ecdb04bedc52f Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Sat, 24 Dec 2022 22:56:19 -0500 Subject: [PATCH] Include full test into the coverage --- .github/workflows/grcov.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/grcov.yml b/.github/workflows/grcov.yml index 8bd60d408..e9d0ef4d2 100644 --- a/.github/workflows/grcov.yml +++ b/.github/workflows/grcov.yml @@ -46,7 +46,12 @@ jobs: override: true - name: Run tests - run: cargo test + run: | + cargo test + # cargo test --all-targets + # cargo test --all-targets --all-features + # cargo test --doc + # tests/test.sh env: CARGO_INCREMENTAL: '0' RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'