From a7d9da8be82997d54d5a10c02d4d385e1badc4d8 Mon Sep 17 00:00:00 2001 From: Jenny Tam Date: Thu, 16 Nov 2017 23:06:06 -0800 Subject: [PATCH] Fixed the path to dlls --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index d799ea6b..6a5e9f12 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -188,9 +188,9 @@ test_script: - 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} - - if [%SQL_INSTANCE%]==[SQL2016] ( + - if [%SQL_INSTANCE%] == [SQL2016] ( SET EXT_DIR=%PHP_SDK_DIR%\php-%PHP_VERSION%-src\ext - OpenCppCoverage.exe --sources %EXT_DIR%\pdo_sqlsrv --sources %EXT_DIR%\sqlsrv --modules *sqlsrv*.dll --export_type=cobertura:.\coverage.xml --cover_children --quiet --continue_after_cpp_exception --optimized_build -- .\php.exe .\run-tests.php -P %APPVEYOR_BUILD_FOLDER%\test\functional\ + OpenCppCoverage.exe --sources %EXT_DIR%\pdo_sqlsrv --sources %EXT_DIR%\sqlsrv --modules .\ext\*sqlsrv*.dll --export_type=cobertura:.\coverage.xml --cover_children --quiet --continue_after_cpp_exception --optimized_build -- .\php.exe .\run-tests.php -P %APPVEYOR_BUILD_FOLDER%\test\functional\ pip install codecov codecov -f ".\coverage.xml" )