Make WordPress Core

Changeset 40231


Ignore:
Timestamp:
03/07/2017 01:13:30 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.1/.travis.yml

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