소스 검색

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>