Skip to content

Commit

Permalink
test: fix phpunit not parsing all test files (#1726)
Browse files Browse the repository at this point in the history
  • Loading branch information
djaiss authored Aug 19, 2018
1 parent 36b860c commit 7c41596
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
UNRELEASED CHANGES:

*
* Fix phpunit not parsing all test files

RELEASED VERSIONS:

Expand Down
16 changes: 6 additions & 10 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,20 @@
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Unit Tests">
<directory suffix="Test.php">./tests/Unit/Models</directory>
<testsuite name="Api Tests">
<directory suffix="Test.php">./tests/Api</directory>
</testsuite>

<testsuite name="Helpers Tests">
<directory suffix="Test.php">./tests/Unit/Helpers</directory>
<testsuite name="Commands Tests">
<directory suffix="Test.php">./tests/Commands</directory>
</testsuite>

<testsuite name="Feature Tests">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>

<testsuite name="Api Tests">
<directory suffix="Test.php">./tests/Api</directory>
</testsuite>

<testsuite name="Commands Tests">
<directory suffix="Test.php">./tests/Commands</directory>
<testsuite name="Unit Tests">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
</testsuites>
<filter>
Expand Down

0 comments on commit 7c41596

Please sign in to comment.