From 46af99235dc67d2fd6aaabe528a8c70351629eab Mon Sep 17 00:00:00 2001 From: Andy Neebel Date: Wed, 14 Jun 2017 14:06:05 -0500 Subject: [PATCH] Upload the junit results to be tracked in appveyor --- .appveyor.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 0677308b9..88e2a4d84 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -26,4 +26,7 @@ build: off test_script: - cd tests - - C:\Python%PYTHON%\python.exe run.py %TEST_IGNORE% %TEST% + - C:\Python%PYTHON%\python.exe run.py %TEST_IGNORE% --junitxml .junit.xml %TEST% + +after_test: + - ps: (New-Object System.Net.WebClient).UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path '.junit.xml'))