Make WordPress Core


Ignore:
Timestamp:
03/07/2017 01:14:16 AM (9 years ago)
Author:
johnbillion
Message:

Build/Test Tools: Disable Xdebug when testing on Travis to increase performance.

See #39978

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/4.0/.travis.yml

    r28799 r40232  
    4141# Before script, failures in this section will result in build status 'failed'
    4242before_script:
     43  - |
     44    stable='^[0-9\.]+$';
     45    if [[ "$TRAVIS_PHP_VERSION" =~ $stable ]]; then
     46        phpenv config-rm xdebug.ini
     47    fi
    4348  - npm install -g grunt-cli
    4449  - npm install
     50  - php --version
    4551
    4652# Script, failures in this section will result in build status 'failed'
Note: See TracChangeset for help on using the changeset viewer.