From c870f0803b6c4c3a1fcf491aef84829458329cc8 Mon Sep 17 00:00:00 2001 From: ulvii Date: Mon, 27 Mar 2017 18:44:57 -0700 Subject: [PATCH] Remove buggy lines Removed $file.out. In case of failing tests, this would become failing_test.diff.out --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 98edf750..2d0c1566 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -167,9 +167,9 @@ after_test: - cd %APPVEYOR_BUILD_FOLDER%\test\ - python output.py - ps: $files = Get-ChildItem sqlsrv\*.diff - - ps: foreach($file in $files){ls $file; more $file; more "$file.out"} + - ps: foreach($file in $files){ls $file; more $file"} - ps: $files = Get-ChildItem pdo_sqlsrv\*.diff - - ps: foreach($file in $files){ls $file; more $file; more "$file.out"} + - ps: foreach($file in $files){ls $file; more $file"} - 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: >- @@ -181,4 +181,4 @@ after_test: { $host.SetShouldExit(1); Write-Host "Forcing build failure due to phpt unit test failure(s)"; - } \ No newline at end of file + }