We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df23e27 commit 0845c43Copy full SHA for 0845c43
justfile
@@ -8,6 +8,7 @@ _list:
8
# Downgrade dependencies necessary to run MSRV checks/tests.
9
[private]
10
downgrade-for-msrv:
11
+ rm Cargo.lock
12
# No downgrades currently needed.
13
14
# Check project
@@ -48,11 +49,9 @@ test: test-no-coverage
48
49
# @just test-coverage-lcov
50
51
# Test workspace using MSRV
-test-msrv: downgrade-for-msrv
52
- @just toolchain={{ msrv_rustup }} test-no-coverage
53
-
54
- # Test workspace and generate Codecov coverage file
+test-msrv: downgrade-for-msrv test
55
+# Test workspace and generate Codecov coverage file
56
test-coverage-codecov:
57
cargo {{ toolchain }} llvm-cov --workspace --all-features --codecov --output-path codecov.json
58
0 commit comments