Skip to content

Commit

Permalink
Merge pull request #313 from david-puglielli/update_appveyor
Browse files Browse the repository at this point in the history
appveyor.yml now outputs details of failing tests
  • Loading branch information
Hadis Kakanejadi Fard authored Mar 4, 2017
2 parents 230b228 + 5c8e59d commit 75d1f22
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: >-
Expand Down

0 comments on commit 75d1f22

Please sign in to comment.