No information on failed build on docker-kube-runner

For some reason our pipeline fails on the step “phpunit” without dispalying any information on why it has failed.

This is the step in our .drone.yml file:

  - name: phpunit
image: dockerhub.calibrate.be/php:7.3-fpm-dev
commands:
  - cd codebase
  - php artisan migrate:fresh --force -q -n
  - php artisan passport:install
  - php artisan passport:client --personal -n
  - php vendor/bin/phpunit --colors=never --stop-on-failure

image_pull_secrets:

  • dockerconfig

does the -q flag (quiet) prevent the output from being written to the console?

Well, that’s awkward :sweat_smile: thans!