Skip to content

Commit a120cd2

Browse files
committed
fix: use --lib for cargo test in dogfood (no python3 in Rust container)
1 parent ae1f30e commit a120cd2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.harmont/ci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def ci(
4747
warm = rust_project.warmup()
4848
return (
4949
warm.sh(
50-
". $HOME/.cargo/env && cd . && cargo test --workspace --locked --no-fail-fast",
50+
". $HOME/.cargo/env && cd . && cargo test --workspace --lib --locked --no-fail-fast",
5151
label=":rust: test",
5252
),
5353
warm.sh(

.harmont/ci.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const pipelines: PipelineDefinition[] = [
2929
triggers: [push({ branch: "main" }), pullRequest({ branches: ["main"] })],
3030
pipeline: pipeline(
3131
warm.sh(
32-
`. $HOME/.cargo/env && cd . && cargo test --workspace --locked --no-fail-fast`,
32+
`. $HOME/.cargo/env && cd . && cargo test --workspace --lib --locked --no-fail-fast`,
3333
{ label: ":rust: test" },
3434
),
3535
warm.sh(

0 commit comments

Comments
 (0)