Skip to content

Commit

Permalink
skip ui and checks
Browse files Browse the repository at this point in the history
  • Loading branch information
nimar committed Jan 20, 2022
1 parent d4a9616 commit 55169af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions .vscode/coverage2
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 55169af

Please sign in to comment.