Skip to content

Commit 5b846b4

Browse files
lucasmerlinemilk
andauthored
Fix cargo test in check.sh (#5299)
The check.sh script was broken in #5166, this fixes it * Related to #5297 * [x] I have followed the instructions in the PR template --------- Co-authored-by: Emil Ernerfeldt <[email protected]>
1 parent f75a235 commit 5b846b4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/check.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ cargo check --quiet --all-targets
2929
cargo check --quiet --all-targets --all-features
3030
cargo check --quiet -p egui_demo_app --lib --target wasm32-unknown-unknown
3131
cargo check --quiet -p egui_demo_app --lib --target wasm32-unknown-unknown --all-features
32-
cargo test --quiet --all-targets --all-features
32+
# TODO(#5297) re-enable --all-features once the tests work with the unity feature
33+
cargo test --quiet --all-targets
3334
cargo test --quiet --doc # slow - checks all doc-tests
3435

3536
cargo check --quiet -p eframe --no-default-features --features "glow"

0 commit comments

Comments
 (0)