appveyor: disable tests on windows again

This commit is contained in:
Danielle Tomlinson 2019-01-14 17:27:07 +01:00
parent 11c733faa8
commit e8bd672411

View file

@ -33,10 +33,10 @@ build_script:
set PATH=%GOPATH%/bin;%PATH%
mkdir -p $GOPATH\bin
go build -o $GOPATH\bin\nomad
test_script:
- cmd: gotestsum -f short-verbose --junitfile results.xml
on_finish:
- ps: |
Push-AppveyorArtifact (Resolve-Path .\results.xml)
$wc = New-Object 'System.Net.WebClient'
$wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\results.xml))
# test_script:
# - cmd: gotestsum -f short-verbose --junitfile results.xml
# on_finish:
# - ps: |
# Push-AppveyorArtifact (Resolve-Path .\results.xml)
# $wc = New-Object 'System.Net.WebClient'
# $wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\results.xml))