Exclude expansion tests from test suite by default

This test isn't high enough signal to have all contributors run it.
This commit is contained in:
David Tolnay
2020-05-05 21:52:30 -07:00
parent 23db3a41e7
commit 115c1b4830
3 changed files with 2 additions and 13 deletions
+1
View File
@@ -7,6 +7,7 @@ publish = false
build = "build.rs"
[features]
expandtest = []
unstable = ["serde/unstable"]
[dependencies]
+1 -1
View File
@@ -23,7 +23,7 @@ fn has_rustfmt() -> bool {
}
fn main() {
if has_cargo_expand() && has_rustfmt() {
if cfg!(feature = "expandtest") && has_cargo_expand() && has_rustfmt() {
println!("cargo:rustc-cfg=expandtest");
}
}