diff --git a/.circleci/config.yml b/.circleci/config.yml index 5ac76ad2..0cef7d7f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -123,8 +123,10 @@ jobs: - run: name: Run Behat tests command: | - nohup php -S example.ddev.site:8000 -t $(pwd)/${DRUPAL_ROOT}/ > /tmp/artifacts/phpd.log 2>&1 & + cd ${DRUPAL_ROOT} + nohup php -S example.ddev.site:8000 .ht.router.php > /tmp/artifacts/phpd.log 2>&1 & google-chrome --headless --remote-debugging-port=9222 &>/dev/null & + cd .. vendor/bin/phing test -Dbuild.env=circleci working_directory: ~/example diff --git a/defaults/install/.circleci/config.yml b/defaults/install/.circleci/config.yml index 7b10a859..aa2064a4 100644 --- a/defaults/install/.circleci/config.yml +++ b/defaults/install/.circleci/config.yml @@ -100,8 +100,10 @@ jobs: - run: name: Run Behat tests command: | - nohup php -S ${CIRCLE_PROJECT_REPONAME}.local:8000 -t $(pwd)/${DRUPAL_ROOT}/ > /tmp/artifacts/phpd.log 2>&1 & + cd ${DRUPAL_ROOT} + nohup php -S ${CIRCLE_PROJECT_REPONAME}.local:8000 .ht.router.php > /tmp/artifacts/phpd.log 2>&1 & google-chrome --headless --remote-debugging-port=9222 &>/dev/null & + cd .. vendor/bin/phing test - store_artifacts: