Skip to content

Commit

Permalink
Run C++ unit tests on AppVeyor
Browse files Browse the repository at this point in the history
Previously, these only ran on Travis.
  • Loading branch information
glebm committed Apr 13, 2019
1 parent bfa4472 commit c173450
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,13 @@ test_script:
git -C sass-spec checkout -q --force ci-spec-pr-$SPEC_PR
}
}
if ($env:Compiler -eq "mingw") {
Write-Host "Running libsass unit tests via mingw32-make..."
mingw32-make -C test test
} else {
Write-Host "Running libsass unit tests via nmake..."
nmake -C test test
}
$env:TargetPath = Join-Path $pwd.Path $env:TargetPath
If (Test-Path "$env:TargetPath") {
ruby sass-spec/sass-spec.rb --probe-todo --impl libsass -c $env:TargetPath -s sass-spec/spec
Expand Down

0 comments on commit c173450

Please sign in to comment.