From c5bc0f36a41fd668eac7cb41a30e0076f0309cd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tautvidas=20Sipavi=C4=8Dius?= Date: Thu, 25 Aug 2016 00:46:29 +0300 Subject: [PATCH] Disable running PHP coverage reports --- circle.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/circle.yml b/circle.yml index dd6dc27e05..0125be8e2b 100644 --- a/circle.yml +++ b/circle.yml @@ -33,7 +33,7 @@ dependencies: # Enable XDebug for coverage reports. # Comment out if not running PHP coverage reports, for performance - - sed -i 's/^;//' /opt/circleci/php/$(phpenv global)/etc/conf.d/xdebug.ini + #- sed -i 's/^;//' /opt/circleci/php/$(phpenv global)/etc/conf.d/xdebug.ini ## tests override test: @@ -42,12 +42,12 @@ test: - mkdir $CIRCLE_TEST_REPORTS/mocha - ./do t:j $CIRCLE_TEST_REPORTS/mocha/junit.xml - # Run PHP tests - #- ./do t:u --xml - # Uncomment to run coverage tests instead - - ./do t:c --xml - # Copy the report + # Run PHP tests + - ./do t:u --xml + # Uncomment to run coverage tests instead + #- ./do t:c --xml + # Copy the report - mkdir $CIRCLE_TEST_REPORTS/codeception - cp tests/_output/report.xml $CIRCLE_TEST_REPORTS/codeception/report.xml - # Uncomment to copy PHP coverage report - - cp tests/_output/coverage.xml $CIRCLE_TEST_REPORTS/codeception/coverage.xml + # Uncomment to copy PHP coverage report + #- cp tests/_output/coverage.xml $CIRCLE_TEST_REPORTS/codeception/coverage.xml