Skip to content

Commit fec2792

Browse files
committed
Merge branch 'master' of github.com:GeneaLabs/laravel-model-caching
2 parents 2ff27e1 + da2beb5 commit fec2792

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ before_script:
2727
- pecl install pcov
2828
- travis_retry composer self-update;
2929
- travis_retry composer config --global github-protocols https;
30-
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then travis_retry composer config http-basic.nova.laravel.com $NOVA_USERNAME $NOVA_PASSWORD; fi'
30+
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then travis_retry composer config http-basic.nova.laravel.com "$NOVA_USERNAME" "$NOVA_PASSWORD"; fi'
3131
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then composer remove --dev laravel/nova --no-interaction --no-update; fi'
3232
- travis_retry composer install --no-interaction --prefer-source;
3333
- psql -c "CREATE DATABASE testing;" -U postgres

phpunit.xml.dist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
stopOnFailure="true"
1212
>
1313
<testsuites>
14-
<testsuite name="Setup">
15-
<directory>./tests/AlwaysRunFirstTest.php</directory>
16-
</testsuite>
1714
<testsuite name="Feature">
1815
<directory suffix="Test.php">./tests/Feature</directory>
1916
</testsuite>
2017
<testsuite name="Integration">
2118
<directory suffix="Test.php">./tests/Integration</directory>
2219
</testsuite>
20+
<testsuite name="Nova">
21+
<directory suffix="Test.php">./tests/Nova</directory>
22+
</testsuite>
2323
</testsuites>
2424
<filter>
2525
<whitelist processUncoveredFilesFromWhitelist="false">

0 commit comments

Comments
 (0)