From fddcaaa2a8b2a220fe010dd1efcc56b665b954a8 Mon Sep 17 00:00:00 2001 From: Niklas Date: Sat, 21 Dec 2019 16:01:02 +0100 Subject: [PATCH] [ci]: remove feature flags in virtual workspace For more information https://github.com/rust-lang/cargo/pull/7507/ --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index d930e318c..bc9c9bf75 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -18,11 +18,11 @@ install: - cargo -vV build_script: - - cargo check --tests --features "%FEATURES%" - - cargo build --all --features "%FEATURES%" + - cargo check --tests + - cargo build --all test_script: - - cargo test --all --features "%FEATURES%" --exclude uint --exclude fixed-hash + - cargo test --all --exclude uint --exclude fixed-hash - cd fixed-hash/ && cargo test --all-features && cd .. - cd uint/ && cargo test --features=std,quickcheck --release && cd .. - cd plain_hasher/ && cargo test --no-default-features && cd ..