Changeset 11652
- Timestamp:
- 07/28/2017 08:00:08 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.travis.yml
r11649 r11652 78 78 - cd .. 79 79 - mv $plugin_slug $plugin_dir 80 # Disable xdebug if not running codecoverage. 81 - if [[ "$BP_TRAVISCI" != "travis:codecoverage" ]] ; then phpenv config-rm xdebug.ini; fi 80 - | 81 # Remove Xdebug when not running codecoverage for a huge performance increase: 82 if [[ "$BP_TRAVISCI" != "travis:codecoverage" && -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini ]]; then 83 phpenv config-rm xdebug.ini 84 else 85 echo "We are running codecoverage or xdebug.ini does not exist" 86 fi 82 87 # set up tests config 83 88 - cd $WP_DEVELOP_DIR
Note: See TracChangeset
for help on using the changeset viewer.