File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3434 run : COMPOSER_MEMORY_LIMIT=-1 composer install --dev --no-interaction
3535
3636 - name : Run tests
37- run : |
38- php vendor/bin/phpunit
37+ run : composer run unit-tests
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
2- <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd" colors =" true" bootstrap =" tests/bootstrap.php" >
3- <php >
4- <ini name =" error_reporting" value =" -1" />
5- <ini name =" display_errors" value =" 1" />
6- <ini name =" display_startup_errors" value =" 1" />
7- </php >
8- <testsuites >
9- <testsuite name =" Unit Tests" >
10- <directory >./tests</directory >
11- <exclude >./tests/Fixtures</exclude >
12- </testsuite >
13- </testsuites >
14- <logging />
2+ <phpunit
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/12.5/phpunit.xsd"
5+ bootstrap =" tests/bootstrap.php"
6+ colors =" true"
7+ failOnWarning =" true"
8+ failOnRisky =" true"
9+ beStrictAboutTestsThatDoNotTestAnything =" true"
10+ >
11+ <php >
12+ <ini name =" error_reporting" value =" -1" />
13+ <ini name =" display_errors" value =" 1" />
14+ <ini name =" display_startup_errors" value =" 1" />
15+ </php >
16+
17+ <testsuites >
18+ <testsuite name =" Unit Tests" >
19+ <directory >tests</directory >
20+ <exclude >tests/Fixtures</exclude >
21+ </testsuite >
22+ </testsuites >
1523</phpunit >
You can’t perform that action at this time.
0 commit comments