Add more location tests, more travis CI fix attempts

This commit is contained in:
Dane Everitt 2017-06-16 00:29:19 -05:00
parent 579cc86910
commit a527949939
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
5 changed files with 77 additions and 14 deletions

View file

@ -47,11 +47,11 @@ return [
'tests' => [
'driver' => 'mysql',
'host' => env('DB_HOST', 'localhost'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'travis'),
'username' => env('DB_USERNAME', 'root'),
'password' => env('DB_PASSWORD', ''),
'host' => env('TEST_DB_HOST', 'localhost'),
'port' => env('TEST_DB_PORT', '3306'),
'database' => env('TEST_DB_DATABASE', 'travis'),
'username' => env('TEST_DB_USERNAME', 'root'),
'password' => env('TEST_DB_PASSWORD', ''),
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',