From 55169af5a607e6311c605b20d50c28f0d0058689 Mon Sep 17 00:00:00 2001 From: Nimar Arora Date: Wed, 19 Jan 2022 17:33:30 -0800 Subject: [PATCH] skip ui and checks --- .github/workflows/ci.yml | 2 +- .vscode/coverage2 | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 98678f3..422f2ca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: test - args: --all-features --no-fail-fast + args: --all-features --no-fail-fast -- --skip ui --skip check_formatting --skip check_clippy env: CARGO_INCREMENTAL: '0' #RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests' diff --git a/.vscode/coverage2 b/.vscode/coverage2 index e86c4ea..7a7878a 100755 --- a/.vscode/coverage2 +++ b/.vscode/coverage2 @@ -8,7 +8,7 @@ rm lcov.info rm -f *.profraw rm -fr coverage cargo +nightly build --verbose $CARGO_OPTIONS -cargo +nightly test --all-features --no-fail-fast --verbose $CARGO_OPTIONS +cargo +nightly test --all-features --no-fail-fast --verbose $CARGO_OPTIONS -- --skip ui --skip check_formatting --skip check_clippy grcov . --binary-path ./target/debug -s . --ignore="/*" --ignore="ferric/examples/*" -t lcov --branch --ignore-not-existing > lcov.info -genhtml -o coverage --show-details --highlight --ignore-errors source --legend lcov.info +genhtml -o coverage --branch-coverage --show-details --highlight --ignore-errors source --legend lcov.info cargo clean