Skip to content

Commit fd2a331

Browse files
nicholasbishopGabrielMajeri
authored andcommitted
xtask: run tests with +nightly
This avoids needing to manually override the default toolchain with `rustup override`. Also fix an out-of-date comment.
1 parent 1c7bf77 commit fd2a331

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

xtask/src/main.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,9 @@ fn run_host_tests() -> Result<()> {
9494
let cargo = Cargo {
9595
action: CargoAction::Test,
9696
features: vec![Feature::Exts],
97-
nightly: false,
97+
nightly: true,
9898
// Don't test uefi-services (or the packages that depend on it)
99-
// as it has lang items that conflict with `std`. The xtask
100-
// currently doesn't have any tests.
99+
// as it has lang items that conflict with `std`.
101100
packages: vec![Package::Uefi, Package::UefiMacros, Package::Xtask],
102101
release: false,
103102
// Use the host target so that tests can run without a VM.

0 commit comments

Comments
 (0)