Skip to content

Commit

Permalink
updates for username and pass for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasjohnkane committed Mar 5, 2019
1 parent 584a7ea commit 44cfbad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -18,8 +18,8 @@ before_install:
- composer validate --no-check-all --strict
- composer require "laravel/framework:${LARAVEL_VERSION}" --no-update -n
- mysql -e 'CREATE DATABASE test;'
- mysql -e "CREATE USER 'root'@'localhost' IDENTIFIED BY 'root';"
- mysql -e "GRANT ALL ON ssn-test.* TO 'root'@'localhost';"
- mysql -e "CREATE USER 'testing'@'localhost' IDENTIFIED BY 'testing';"
- mysql -e "GRANT ALL ON test.* TO 'testing'@'localhost';"

install:
- travis_retry composer install --no-suggest --prefer-dist -n -o
Expand Down
4 changes: 2 additions & 2 deletions phpunit.xml
Expand Up @@ -23,7 +23,7 @@
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="DB_DATABASE" value="test"/>
<env name="DB_USERNAME" value="root"/>
<env name="DB_PASSWORD" value="root"/>
<env name="DB_USERNAME" value="testing"/>
<env name="DB_PASSWORD" value="testing"/>
</php>
</phpunit>

0 comments on commit 44cfbad

Please sign in to comment.