From e2393a5e24a0657097aa0c771e96eff1b22ff859 Mon Sep 17 00:00:00 2001 From: anatoly techtonik <techtonik@gmail.com> Date: Tue, 18 Oct 2016 13:51:03 +0300 Subject: [PATCH] appveyor.yml Fix nosetests report upload /xunit/ endpoint in AppVeyor is made for uploading xUnit.net reports http://help.appveyor.com/discussions/problems/5264-xunit-results-are-not-being-parsed --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 29b50f5..f9b7fd0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -33,7 +33,7 @@ test_script: if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) } # upload results to AppVeyor $wc = New-Object 'System.Net.WebClient' - $wc.UploadFile("https://ci.appveyor.com/api/testresults/xunit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\nosetests.xml)) + $wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\nosetests.xml)) artifacts: - path: dist\*.whl