Browse Source

Merge pull request #4687 from mll-lab/unit-tests-first

[5.6] Switch execution order of testsuites, unit tests first
Taylor Otwell 5 years ago
parent
commit
d53539b47b
1 changed files with 4 additions and 4 deletions
  1. 4 4
      phpunit.xml

+ 4 - 4
phpunit.xml

@@ -9,13 +9,13 @@
          processIsolation="false"
          stopOnFailure="false">
     <testsuites>
-        <testsuite name="Feature">
-            <directory suffix="Test.php">./tests/Feature</directory>
-        </testsuite>
-
         <testsuite name="Unit">
             <directory suffix="Test.php">./tests/Unit</directory>
         </testsuite>
+        
+        <testsuite name="Feature">
+            <directory suffix="Test.php">./tests/Feature</directory>
+        </testsuite>
     </testsuites>
     <filter>
         <whitelist processUncoveredFilesFromWhitelist="true">