Disable running PHP coverage reports

This commit is contained in:
Tautvidas Sipavičius
2016-08-25 00:46:29 +03:00
parent efc5c34bf9
commit c5bc0f36a4

View File

@ -33,7 +33,7 @@ dependencies:
# Enable XDebug for coverage reports. # Enable XDebug for coverage reports.
# Comment out if not running PHP coverage reports, for performance # 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 ## tests override
test: test:
@ -43,11 +43,11 @@ test:
- ./do t:j $CIRCLE_TEST_REPORTS/mocha/junit.xml - ./do t:j $CIRCLE_TEST_REPORTS/mocha/junit.xml
# Run PHP tests # Run PHP tests
#- ./do t:u --xml - ./do t:u --xml
# Uncomment to run coverage tests instead # Uncomment to run coverage tests instead
- ./do t:c --xml #- ./do t:c --xml
# Copy the report # Copy the report
- mkdir $CIRCLE_TEST_REPORTS/codeception - mkdir $CIRCLE_TEST_REPORTS/codeception
- cp tests/_output/report.xml $CIRCLE_TEST_REPORTS/codeception/report.xml - cp tests/_output/report.xml $CIRCLE_TEST_REPORTS/codeception/report.xml
# Uncomment to copy PHP coverage report # Uncomment to copy PHP coverage report
- cp tests/_output/coverage.xml $CIRCLE_TEST_REPORTS/codeception/coverage.xml #- cp tests/_output/coverage.xml $CIRCLE_TEST_REPORTS/codeception/coverage.xml