add mysql settings

This commit is contained in:
Stanislav Malyshev 2013-08-12 22:57:06 -07:00
parent 716fc80fda
commit f31d6bc0d9
4 changed files with 11 additions and 4 deletions

View File

@ -8,7 +8,14 @@ notifications:
email: false
env:
- REPORT_EXIT_STATUS=1
global:
- MYSQL_TEST_HOST=127.0.0.1
- MYSQL_TEST_USER=travis
- PDO_MYSQL_TEST_DSN=mysql:host=127.0.0.1;dbname=test
- PDO_MYSQL_TEST_USER=travis
- PDO_MYSQL_TEST_PASS=
matrix:
- REPORT_EXIT_STATUS=1
before_script:
# Compile PHP

View File

@ -1,2 +1,2 @@
#!/bin/bash
mysql -u root -e "CREATE DATABASE IF NOT EXISTS test"
mysql -e "CREATE DATABASE IF NOT EXISTS test"

View File

@ -1,2 +1,2 @@
#!/bin/bash
mysql -u root -e "CREATE DATABASE IF NOT EXISTS test"
mysql -e "CREATE DATABASE IF NOT EXISTS test"

View File

@ -1,2 +1,2 @@
#!/bin/bash
mysql -u root -e "CREATE DATABASE IF NOT EXISTS test"
mysql -e "CREATE DATABASE IF NOT EXISTS test"