Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ before_script:
else
echo "xdebug.ini does not exist"
fi
- |
# Force the MySQL extension for PHP 5.2
if [[ ${TRAVIS_PHP_VERSION:0:3} == "5.2" ]]; then
echo "define( 'WP_USE_EXT_MYSQL', true );" >> wp-tests-config.php
fi
- |
# Export Composer's global bin dir to PATH, but not on PHP 5.2:
if [[ ${TRAVIS_PHP_VERSION:0:3} != "5.2" ]]; then
Expand Down