Stop uploading test results to AppVeyor.

Seems like we get a HTTP 500 now...
This commit is contained in:
Florian Bruhin 2015-11-27 20:12:25 +01:00
parent bf3bd3bb9d
commit 9d92baa996

View File

@ -15,11 +15,3 @@ install:
test_script:
- C:\Python34\Scripts\tox -e %TESTENV% -- -p "no:sugar" -v --junitxml=junit.xml
after_test:
- ps: |
if ($env:TESTENV -ne "pylint") {
$url = "https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)"
$file = '.\junit.xml'
(New-Object 'System.Net.WebClient').UploadFile($url, (Resolve-Path $file))
}