We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 476549d commit d080780Copy full SHA for d080780
phpunit.xml
@@ -10,8 +10,15 @@
10
bootstrap="vendor/autoload.php"
11
>
12
<testsuites>
13
- <testsuite name="Project Test Suite">
+ <testsuite name="No service-related tests">
14
<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>
22
</testsuite>
23
</testsuites>
24
0 commit comments