We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a3ae8f commit 0892a82Copy full SHA for 0892a82
1 file changed
.github/workflows/rust-instrumented.yml
@@ -68,13 +68,13 @@ jobs:
68
- name: Rust Tests
69
if: ${{ matrix.suite == 'tests' }}
70
run: |
71
- cargo nextest run --cargo-profile ci --locked --workspace --all-features --no-fail-fast
+ cargo nextest run --locked --workspace --all-features --no-fail-fast
72
- name: Generate coverage report
73
74
RUST_SYSROOT="$(rustc --print sysroot)"
75
RUST_HOST="$(rustc --print host-tuple)"
76
LLVM_TOOLS_BIN="${RUST_SYSROOT}/lib/rustlib/${RUST_HOST}/bin"
77
- grcov . --binary-path target/ci/ -s . -t lcov --llvm --ignore-not-existing \
+ grcov . --binary-path target/debug/ -s . -t lcov --llvm --ignore-not-existing \
78
--llvm-path "${LLVM_TOOLS_BIN}" \
79
--threads $(nproc) \
80
--ignore '../*' --ignore '/*' --ignore 'fuzz/*' --ignore 'vortex-bench/*' \
0 commit comments