From 13f26c9ab8f96b2f5da363439e075c770d28208c Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 9 Nov 2023 16:45:23 -0600 Subject: [PATCH] fix CI --- xtask/src/runchecks.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xtask/src/runchecks.rs b/xtask/src/runchecks.rs index cf0c3364d5..d7b13b79a2 100644 --- a/xtask/src/runchecks.rs +++ b/xtask/src/runchecks.rs @@ -275,7 +275,9 @@ fn std_checks() { } // Test each workspace - cargo_test(["--workspace"].into()); + cargo_test(["--workspace", "--exclude", "burn-train"].into()); + // Separate out `burn-train` to prevent feature unification https://doc.rust-lang.org/cargo/reference/resolver.html#feature-resolver-version-2:~:text=When%20building%20multiple,separate%20cargo%20invocations. + cargo_test(["-p", "burn-train", "--lib"].into()); // Test burn-dataset features burn_dataset_features_std();