We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8afafd commit 8d4202eCopy full SHA for 8d4202e
.travis.yml
@@ -9,7 +9,7 @@ php:
9
10
env:
11
matrix:
12
- - DB=mysql db_class='Cake\Database\Driver\Mysql' db_dsn='mysql:host=0.0.0.0;dbname=cakephp_test' db_database='cakephp_test' db_username='travis' db_password=''
+ - DB=mysql db_dsn='mysql://root@127.0.0.1/cakephp_test'
13
global:
14
- DEFAULT=1
15
@@ -33,7 +33,7 @@ before_script:
33
34
- if [[ $PHPCS != 1 ]]; then composer require phpunit/phpunit:"^4.8|^5.7|^6.0"; fi
35
36
- - sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE cakephp_test;'; fi"
+ - sh -c "if [ '$DB' = 'mysql' ]; then mysql -u root -e 'CREATE DATABASE cakephp_test;'; fi"
37
- sh -c "if [ '$DB' = 'pgsql' ]; then psql -c 'CREATE DATABASE cakephp_test;' -U postgres; fi"
38
39
- phpenv rehash
0 commit comments