diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 561d28a1e1cd7d994077dad8e7aa9d4ea48bb159..6202f0625617d06db90ec59d5943f1f3ce0d81d5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,7 +20,8 @@ phpunit: script: - php -dzend_extension=xdebug.so -dxdebug.mode=coverage bin/phpunit -c phpunit.xml --color=always - --coverage-text --coverage-cobertura=storage/logs/cobertura.xml + --coverage-text --coverage-cobertura=storage/logs/cobertura.xml | tee /tmp/phpunit.out + - sed -r 's~\x01?(\x1B\(B)?\x1B\[([0-9;]*)?[JKmsu]\x02?~~g' /tmp/phpunit.out|grep '^ Lines' artifacts: paths: - storage/logs/cobertura.xml @@ -28,7 +29,7 @@ phpunit: coverage_report: coverage_format: cobertura path: storage/logs/cobertura.xml - coverage: '/^\x1b\[[\d;]+m\s*Lines:\s*\d+.\d+\%/' + coverage: '/^\s*Lines:\s*\d+.\d+\%/' packagist: