瀏覽代碼

Move exclude inside of whitelist

Marcel Pociot 9 年之前
父節點
當前提交
e5c28445fe
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      phpunit.xml

+ 4 - 4
phpunit.xml

@@ -12,15 +12,15 @@
     <testsuites>
         <testsuite name="Versionable Suite">
             <directory>tests/</directory>
-            <exclude>
-                <file>src/Mpociot/ApiDoc/ApiDocGeneratorServiceProvider.php</file>
-                <file>src/resources/views/documentarian.blade.php</file>
-            </exclude>
         </testsuite>
     </testsuites>
     <filter>
         <whitelist>
             <directory suffix=".php">src/Mpociot/</directory>
+            <exclude>
+                <file>src/Mpociot/ApiDoc/ApiDocGeneratorServiceProvider.php</file>
+                <file>src/resources/views/documentarian.blade.php</file>
+            </exclude>
         </whitelist>
     </filter>
 </phpunit>