From ebbf8d5a299d06d1848e7dcc292ea322267c81ab Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Mon, 10 Apr 2017 17:46:33 -0500 Subject: [PATCH] appveyor: cargo test requires the gen-tests feature --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index c05bfdf..80d943c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -16,5 +16,5 @@ build: false test_script: - cargo build --target %TARGET% - cargo build --release --target %TARGET% - - cargo test --no-default-features --target %TARGET% - - cargo test --no-default-features --release --target %TARGET% + - cargo test --no-default-features --feature gen-tests --target %TARGET% + - cargo test --no-default-features --feature gen-tests --release --target %TARGET%