Skip to content

Commit d080780

Browse files
committed
Separate testsuites
1 parent 476549d commit d080780

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

phpunit.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,15 @@
1010
bootstrap="vendor/autoload.php"
1111
>
1212
<testsuites>
13-
<testsuite name="Project Test Suite">
13+
<testsuite name="No service-related tests">
1414
<directory>tests</directory>
15+
<exclude>tests/Storage/MemcacheTokenStorageTest.php</exclude>
16+
<exclude>tests/Storage/RedisTokenStorageTest.php</exclude>
17+
</testsuite>
18+
19+
<testsuite name="Service-related tests">
20+
<file>tests/Storage/MemcacheTokenStorageTest.php</file>
21+
<file>tests/Storage/RedisTokenStorageTest.php</file>
1522
</testsuite>
1623
</testsuites>
1724

0 commit comments

Comments
 (0)