File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 40
40
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "symfony/console:>=4.3.4" "mockery/mockery:^1.3.2" --no-interaction --no-update
41
41
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
42
42
- name : Execute tests
43
- run : vendor/bin/phpunit
43
+ run : vendor/bin/phpunit -c phpunit-laravel7.xml.dist
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" bootstrap =" vendor/autoload.php"
3
+ backupGlobals=" false"
4
+ colors=" true"
5
+ processIsolation=" false"
6
+ stopOnFailure=" false" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd" >
7
+ <testsuites >
8
+ <testsuite name =" Eloquent Human Timestamps Test Suite" >
9
+ <directory >tests</directory >
10
+ </testsuite >
11
+ </testsuites >
12
+ <php >
13
+ <env name =" CACHE_DRIVER" value =" array" />
14
+ </php >
15
+ </phpunit >
You can’t perform that action at this time.
0 commit comments