From c071681d93d6028e528fa6fef762a8a6118ea27f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Cie=C5=9Blak?= Date: Sun, 17 Apr 2016 17:48:44 +0000 Subject: [PATCH] Exit on sass-spec failure --- appveyor.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 55f9ad1b15..f14f766fab 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -64,7 +64,10 @@ test_script: } } ruby sass-spec/sass-spec.rb -V 3.4 --impl libsass -c $env:TargetPath -s sass-spec/spec - + if(-not($?)) { + echo "sass-spec tests failed" + exit 1 + } Write-Host "Explicitly testing the case when cwd has Cyrillic characters: " -nonewline # See comments in gh-1774 for details. $env:TargetPath = Join-Path $pwd.Path $env:TargetPath