From 5cbf337f1823028ce9614cd1d09c73ffb29cce8b Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Fri, 3 Jan 2025 14:55:51 +0100 Subject: [PATCH] check.sh: enable all features when running `cargo test` --- scripts/check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check.sh b/scripts/check.sh index 7db1a6aa3e2..8c0f0af9750 100755 --- a/scripts/check.sh +++ b/scripts/check.sh @@ -30,7 +30,7 @@ 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 # TODO(#5297) re-enable --all-features once the tests work with the unity feature -cargo test --quiet --all-targets +cargo test --quiet --all-targets --all-features cargo test --quiet --doc # slow - checks all doc-tests cargo check --quiet -p eframe --no-default-features --features "glow"