Skip to content

Commit dad3022

Browse files
committed
Merge pull request #2010 from saper/appfail
Exit on sass-spec failure
2 parents e507b41 + c071681 commit dad3022

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

appveyor.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,10 @@ test_script:
6464
}
6565
}
6666
ruby sass-spec/sass-spec.rb -V 3.4 --impl libsass -c $env:TargetPath -s sass-spec/spec
67-
67+
if(-not($?)) {
68+
echo "sass-spec tests failed"
69+
exit 1
70+
}
6871
Write-Host "Explicitly testing the case when cwd has Cyrillic characters: " -nonewline
6972
# See comments in gh-1774 for details.
7073
$env:TargetPath = Join-Path $pwd.Path $env:TargetPath

0 commit comments

Comments
 (0)