appveyor.yml now outputs details of failing tests

This commit is contained in:
David Puglielli 2017-03-02 11:29:40 -08:00
parent 258c465f5e
commit 5c8e59dcec

View file

@ -165,7 +165,11 @@ test_script:
after_test:
- cd %APPVEYOR_BUILD_FOLDER%\test\
- python output.py
- python output.py
- ps: $files = Get-ChildItem sqlsrv\*.diff
- ps: foreach($file in $files){ls $file; more $file; more "$file.out"}
- ps: $files = Get-ChildItem pdo_sqlsrv\*.diff
- ps: foreach($file in $files){ls $file; more $file; more "$file.out"}
- ps: (new-object net.webclient).UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\nativeresult1.xml))
- ps: (new-object net.webclient).UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\nativeresult2.xml))
- ps: >-