From b1befeb594845de834ad567a2c27183094513455 Mon Sep 17 00:00:00 2001 From: Peter Glotfelty Date: Sat, 30 Apr 2022 15:26:54 -0700 Subject: [PATCH] See if this gets the build fixed --- appveyor.yml | 10 +++++++++- strum_tests/Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index befba9c..9bf3377 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -130,4 +130,12 @@ build: false #directly or perform other testing commands. Rust will automatically be placed in the PATH # environment variable. test_script: - - cargo test --verbose %cargoflags% + - cargo test --verbose --features strum_tests/test_phf %cargoflags% + +for: +- matrix: + only: + - channel: 1.32.0 + + test_script: + - cargo test --verbose %cargoflags% \ No newline at end of file diff --git a/strum_tests/Cargo.toml b/strum_tests/Cargo.toml index d74abfd..3a69cef 100644 --- a/strum_tests/Cargo.toml +++ b/strum_tests/Cargo.toml @@ -5,7 +5,7 @@ edition = "2018" authors = ["Peter Glotfelty "] [features] -default = ["test_phf"] +default = [] test_phf = ["strum/phf"] [dependencies]