Skip to content

Commit 599ad8c

Browse files
committed
WIP
1 parent be367ad commit 599ad8c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ addons:
1212
env:
1313
global:
1414
- REDIS_HOST=127.0.0.1
15+
- DB_HOST=127.0.0.1
1516

1617
matrix:
1718
include:
@@ -24,7 +25,7 @@ before_script:
2425
- travis_retry composer config --global github-protocols https
2526
- travis_retry composer install --no-interaction --prefer-source
2627
- psql -c "CREATE DATABASE testing_db;" -U postgres
27-
- psql -c "CREATE USER foo WITH PASSWORD 'bar';" -U postgres
28+
- psql -c "CREATE USER homestead WITH PASSWORD 'secret';" -U postgres
2829

2930
after_success:
3031
- travis_retry php vendor/bin/php-coveralls -v

phpunit.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<env name="SESSION_DRIVER" value="array"/>
3232
<env name="QUEUE_DRIVER" value="sync"/>
3333
<env name="DB_CONNECTION" value="testing"/>
34-
<env name="DB_HOST" value="127.0.0.1"/>
34+
<env name="DB_HOST" value="192.168.10.10"/>
3535
<env name="DB_DATABASE" value="testing"/>
3636
<env name="DB_USERNAME" value="homestead"/>
3737
<env name="DB_PASSWORD" value="secret"/>

0 commit comments

Comments
 (0)