From 29bfc11ef8e0eab8eba4ac6e4a3f56bdc0ed48ae Mon Sep 17 00:00:00 2001 From: MiltonPM Date: Thu, 13 Jun 2019 16:03:52 -0400 Subject: [PATCH] Run Test units --- .circleci/config.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 261ab1955..a8f59fc9d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -21,13 +21,13 @@ jobs: set -e find tests/ -name "*Test.php" > tests.list input="tests.list" - while IFS= read -r line - do - if [ $line != "tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/SkinsTest.php" ] && [ $line != "tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/LanguageTest.php" ]; - then - vendor/phpunit/phpunit/phpunit --coverage-html ./coverage $line - fi - done < "$input" + #while IFS= read -r line + #do + #if [ $line != "tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/SkinsTest.php" ] && [ $line != "tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/LanguageTest.php" ]; + #then + vendor/phpunit/phpunit/phpunit --coverage-html ./coverage tests/unit/ + #fi + #done < "$input" - run: ls -la coverage - run: mysql -u root -ppassword -e "use test; show tables;" - store_artifacts: