codecov.io gives error in combination with Bitbucket pipelines
问题 I did set up a private repo on Bitbucket to host a PHP project. For this project I also use the pipelines integration. This is the content of my pipelines yaml file: image: php:7.1.4 pipelines: default: - step: script: - ./install_xdebug.sh - ./install_mailhog.sh - ./install_composer.sh - composer install - vendor/bin/phpunit --coverage-clover=coverage.xml - if [ $? -eq 0 ]; then bash <(curl -s https://codecov.io/bash); fi I'm able to generate a code coverage file with Xdebug: Generating code