Skip to content

Commit

Permalink
Update phpunit.xml.dist
Browse files Browse the repository at this point in the history
Signed-off-by: Nathanael Esayeas <nathanael.esayeas@protonmail.com>
  • Loading branch information
ghostwriter committed Jan 11, 2022
1 parent 7e627c0 commit d5dc7cd
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,20 @@
verbose="true"
>
<testsuites>
<testsuite name="Mockery Test Suite PHP8">
<directory suffix="Test.php">./tests</directory>
<directory phpVersion="8.0.0-dev" phpVersionOperator=">=">./tests/PHP80</directory>
<directory phpVersion="8.1.0-dev" phpVersionOperator=">=">./tests/PHP81</directory>
</testsuite>

<testsuite name="Mockery Test Suite PHP7">
<directory suffix="Test.php">./tests</directory>
<exclude>./tests/PHP80</exclude>
<exclude>./tests/PHP81</exclude>
</testsuite>

<testsuite name="Mockery Test Suite PHP80">
<directory phpVersion="8.0.0-dev" phpVersionOperator=">=">./tests</directory>
<exclude>./tests/PHP81</exclude>
</testsuite>

<testsuite name="Mockery Test Suite PHP81">
<directory phpVersion="8.1.0-dev" phpVersionOperator=">=">./tests</directory>
</testsuite>
</testsuites>

<filter>
Expand All @@ -28,5 +31,4 @@
</exclude>
</whitelist>
</filter>

</phpunit>

0 comments on commit d5dc7cd

Please sign in to comment.