From 608c71402edaba76b00a3e705daf95ecfd6017d6 Mon Sep 17 00:00:00 2001 From: Phuntsok Drak-pa Date: Thu, 14 Feb 2019 13:27:12 +0100 Subject: [PATCH] Fix for AppVeyor config --- appveyor.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index aa1e16a..b8945ed 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -61,12 +61,12 @@ install: ## Build Script ## -# 'cargo test' takes care of building for us, so disable Appveyor's build stage. This prevents -# the "directory does not contain a project or solution file" error. +# This prevents the "directory does not contain a project or solution file" +# error. build: false -# Uses 'cargo test' to run tests and build. Alternatively, the project may call compiled programs -#directly or perform other testing commands. Rust will automatically be placed in the PATH -# environment variable. +# Uses 'cargo build' to build. AppVeyor cannot run tests on this crate as it +# redirects the console's output, and its state then cannot be retrieved, let +# alone modified. test_script: - - cargo test --verbose %cargoflags% + - cargo build --verbose %cargoflags%