From 5b846b4554fe47269affb43efef2cad8710a8a47 Mon Sep 17 00:00:00 2001 From: lucasmerlin Date: Thu, 24 Oct 2024 14:05:06 +0200 Subject: [PATCH] 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 --- scripts/check.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/check.sh b/scripts/check.sh index 6f4aee69ec3..d7852c25fc2 100755 --- a/scripts/check.sh +++ b/scripts/check.sh @@ -29,7 +29,8 @@ cargo check --quiet --all-targets cargo check --quiet --all-targets --all-features cargo check --quiet -p egui_demo_app --lib --target wasm32-unknown-unknown cargo check --quiet -p egui_demo_app --lib --target wasm32-unknown-unknown --all-features -cargo test --quiet --all-targets --all-features +# TODO(#5297) re-enable --all-features once the tests work with the unity feature +cargo test --quiet --all-targets cargo test --quiet --doc # slow - checks all doc-tests cargo check --quiet -p eframe --no-default-features --features "glow"