Skip to content

Commit ac8ea3d

Browse files
committed
fix CI: remove check-docs from check-lint and restore --release for conformance
check-docs requires nightly + cargo-docs-rs which the lint job doesn't have (it's handled by the separate docs job. The conformance build was also missing --release, but test_conformance.py expects release binaries. EOF )
1 parent 65219e8 commit ac8ea3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ check-docs:
3838
docs:
3939
cargo +nightly docs-rs --open
4040

41-
check-lint: check-format check-clippy check-docs
41+
check-lint: check-format check-clippy
4242

4343
check-coverage:
4444
# requires cargo-llvm-cov and llvm-tools-preview
4545
RUST_BACKTRACE=1 cargo llvm-cov --all-features --fail-under-lines 30 --show-missing-lines
4646

4747
check-conformance:
48-
cargo build --manifest-path tests/conformance/rust/Cargo.toml
48+
cargo build --release --manifest-path tests/conformance/rust/Cargo.toml
4949
uv run --with hegel-core --with pytest --with hypothesis \
5050
pytest tests/conformance/test_conformance.py
5151

0 commit comments

Comments
 (0)