|
8 | 8 | # Downgrade dependencies necessary to run MSRV checks/tests. |
9 | 9 | [private] |
10 | 10 | downgrade-for-msrv: |
11 | | - cargo update -p=litemap --precise=0.7.4 # next ver: 1.81.0 |
12 | | - cargo update -p=zerofrom --precise=0.1.5 # next ver: 1.81.0 |
13 | | - cargo update -p=base64ct --precise=1.6.0 # next ver: 1.81.0 |
| 11 | + # No downgrades currently needed. |
14 | 12 |
|
15 | 13 | # Check project |
16 | 14 | check: |
|
32 | 30 | # Lint workspace with Clippy |
33 | 31 | clippy: |
34 | 32 | cargo clippy --workspace --no-default-features |
35 | | - cargo clippy --workspace --all-features |
| 33 | + cargo clippy --workspace |
| 34 | + # cargo clippy --workspace --all-features |
36 | 35 |
|
37 | 36 | # Test workspace without generating coverage files |
38 | 37 | [private] |
39 | 38 | test-no-coverage: |
40 | 39 | cargo {{ toolchain }} nextest run --workspace --no-default-features |
41 | | - cargo {{ toolchain }} nextest run --workspace --all-features |
42 | | - cargo {{ toolchain }} test --doc --workspace --all-features |
| 40 | + # cargo {{ toolchain }} nextest run --workspace --all-features |
| 41 | + cargo {{ toolchain }} test --doc --workspace |
| 42 | + # cargo {{ toolchain }} test --doc --workspace --all-features |
43 | 43 | RUSTDOCFLAGS="-D warnings" cargo {{ toolchain }} doc --workspace --no-deps --all-features |
44 | 44 |
|
45 | 45 | # Test workspace and generate coverage files |
46 | 46 | test: test-no-coverage |
47 | | - @just test-coverage-codecov |
48 | | - @just test-coverage-lcov |
| 47 | + # @just test-coverage-codecov |
| 48 | + # @just test-coverage-lcov |
49 | 49 |
|
50 | 50 | # Test workspace using MSRV |
51 | 51 | test-msrv: downgrade-for-msrv |
52 | 52 | @just toolchain={{ msrv_rustup }} test-no-coverage |
53 | 53 |
|
54 | | -# Test workspace and generate Codecov coverage file |
| 54 | + # Test workspace and generate Codecov coverage file |
55 | 55 | test-coverage-codecov: |
56 | 56 | cargo {{ toolchain }} llvm-cov --workspace --all-features --codecov --output-path codecov.json |
57 | 57 |
|
|
0 commit comments