We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfa4472 commit c173450Copy full SHA for c173450
appveyor.yml
@@ -69,6 +69,13 @@ test_script:
69
git -C sass-spec checkout -q --force ci-spec-pr-$SPEC_PR
70
}
71
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
+ }
79
$env:TargetPath = Join-Path $pwd.Path $env:TargetPath
80
If (Test-Path "$env:TargetPath") {
81
ruby sass-spec/sass-spec.rb --probe-todo --impl libsass -c $env:TargetPath -s sass-spec/spec
0 commit comments