Skip to content

Commit c173450

Browse files
committed
Run C++ unit tests on AppVeyor
Previously, these only ran on Travis.
1 parent bfa4472 commit c173450

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

appveyor.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,13 @@ test_script:
6969
git -C sass-spec checkout -q --force ci-spec-pr-$SPEC_PR
7070
}
7171
}
72+
if ($env:Compiler -eq "mingw") {
73+
Write-Host "Running libsass unit tests via mingw32-make..."
74+
mingw32-make -C test test
75+
} else {
76+
Write-Host "Running libsass unit tests via nmake..."
77+
nmake -C test test
78+
}
7279
$env:TargetPath = Join-Path $pwd.Path $env:TargetPath
7380
If (Test-Path "$env:TargetPath") {
7481
ruby sass-spec/sass-spec.rb --probe-todo --impl libsass -c $env:TargetPath -s sass-spec/spec

0 commit comments

Comments
 (0)