From 6c6061819fd9104578f4686ee48147de6dad21c7 Mon Sep 17 00:00:00 2001 From: yitam Date: Fri, 23 Jun 2017 14:05:23 -0700 Subject: [PATCH] moved output.py too --- appveyor.yml | 10 +++++----- test/{ => functional}/output.py | 0 2 files changed, 5 insertions(+), 5 deletions(-) rename test/{ => functional}/output.py (100%) diff --git a/appveyor.yml b/appveyor.yml index 6b1e6fb7..c80e64d6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -174,14 +174,14 @@ test_script: - python %APPVEYOR_BUILD_FOLDER%\test\setup\cleanup_dbs.py -dbname %PDOSQLSRV_DBNAME% after_test: - - cd %APPVEYOR_BUILD_FOLDER%\test\ + - cd %APPVEYOR_BUILD_FOLDER%\test\functional\ - python output.py - - ps: $difffiles = Get-ChildItem functional\sqlsrv\*.diff - - ps: $outfiles = Get-ChildItem functional\sqlsrv\*.out + - ps: $difffiles = Get-ChildItem sqlsrv\*.diff + - ps: $outfiles = Get-ChildItem sqlsrv\*.out - ps: foreach($file in $difffiles){ls $file; more $file} - ps: foreach($file in $outfiles){ls $file; more $file} - - ps: $difffiles = Get-ChildItem functional\pdo_sqlsrv\*.diff - - ps: $outfiles = Get-ChildItem functional\pdo_sqlsrv\*.out + - ps: $difffiles = Get-ChildItem pdo_sqlsrv\*.diff + - ps: $outfiles = Get-ChildItem pdo_sqlsrv\*.out - ps: foreach($file in $difffiles){ls $file; more $file} - ps: foreach($file in $outfiles){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)) diff --git a/test/output.py b/test/functional/output.py similarity index 100% rename from test/output.py rename to test/functional/output.py