Skip to content

Commit cda2c49

Browse files
remove feature stuff
1 parent ac10f59 commit cda2c49

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

xtask/src/main.rs

+1-11
Original file line numberDiff line numberDiff line change
@@ -107,21 +107,11 @@ fn try_main() -> Result<()> {
107107
Err(anyhow!("invalid arguments"))?
108108
}
109109
}
110-
111110
let cargo_toml = cargo_toml()?;
112-
113111
{
114112
let _s = section("TEST");
115113
for &release in &[None, Some("--release")] {
116-
for &tracing in &[&[][..], &["--features", "tracing"]] {
117-
for &force in &[&[][..], &["--features", "force"]] {
118-
cmd!(
119-
sh,
120-
"cargo test {release...} {tracing...} {force...} --workspace -- --nocapture"
121-
)
122-
.run()?;
123-
}
124-
}
114+
cmd!(sh, "cargo test {release...} --workspace -- --nocapture").run()?;
125115
}
126116
}
127117

0 commit comments

Comments
 (0)