Changeset 9238
- Timestamp:
- 12/18/2014 10:42:19 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/.travis.yml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/.travis.yml
r9237 r9238 38 38 - sed -i "s/yourusernamehere/root/" wp-tests-config.php 39 39 - sed -i "s/yourpasswordhere//" wp-tests-config.php 40 # disable WP_DEBUG for PHP 5.5 due to ext/mysqli E_DEPRECATED errors41 - if [[ "$TRAVIS_PHP_VERSION" == 5.5* ]] && [[ "$WP_VERSION" == "3.7" ]] ; then sed -i "s:define( 'WP_DEBUG://define( 'WP_DEBUG:" wp-tests-config.php; fi;40 # disable WP_DEBUG for PHP >= 5.5 due to ext/mysqli E_DEPRECATED errors 41 - if [[ "$TRAVIS_PHP_VERSION" > 5.4* ]] && [[ "$WP_VERSION" == "3.7" ]] ; then sed -i "s:define( 'WP_DEBUG://define( 'WP_DEBUG:" wp-tests-config.php; fi; 42 42 # set up database 43 43 - mysql -e 'CREATE DATABASE wordpress_test;' -uroot
Note: See TracChangeset
for help on using the changeset viewer.