aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorCarlos O'Ryan <coryan@google.com>2018-01-05 11:01:37 -0500
committerCarlos O'Ryan <coryan@google.com>2018-01-05 11:01:37 -0500
commitadfdc65ca7ed813cfb72f290f9aa2f2a1ca5bc26 (patch)
tree2680604895eb033b58f3731639fb8ce8abdf9f9c /appveyor.yml
parentd3acb4ba18a545b168c106d264dd54c591c11cc7 (diff)
downloadgoogletest-adfdc65ca7ed813cfb72f290f9aa2f2a1ca5bc26.tar.gz
googletest-adfdc65ca7ed813cfb72f290f9aa2f2a1ca5bc26.tar.bz2
googletest-adfdc65ca7ed813cfb72f290f9aa2f2a1ca5bc26.zip
Fixed test for pull request.
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml
index f2cde6d1..f73f413b 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -72,7 +72,7 @@ install:
build_script:
- ps: |
# Only enable some builds for pull requests, the AppVeyor queue is too long.
- if (-not (Test-Path env:APPVEYOR_PULL_REQUEST_NUMBER) -And (-not (Test-Path env:enabled_on_pr) -or $env:enabled_on_pr -ne "yes")) {
+ if ((Test-Path env:APPVEYOR_PULL_REQUEST_NUMBER) -And (-not (Test-Path env:enabled_on_pr) -or $env:enabled_on_pr -ne "yes")) {
return
}
md _build -Force | Out-Null
@@ -94,7 +94,7 @@ build_script:
test_script:
- ps: |
# Only enable some builds for pull requests, the AppVeyor queue is too long.
- if (-not (Test-Path env:APPVEYOR_PULL_REQUEST_NUMBER) -And (-not (Test-Path env:enabled_on_pr) -or $env:enabled_on_pr -ne "yes")) {
+ if ((Test-Path env:APPVEYOR_PULL_REQUEST_NUMBER) -And (-not (Test-Path env:enabled_on_pr) -or $env:enabled_on_pr -ne "yes")) {
return
}
if ($env:generator -eq "MinGW Makefiles") {