From 769dc6b96bf08d417182f78a790de457af9f5e60 Mon Sep 17 00:00:00 2001 From: Benedikt Franke Date: Mon, 18 Jun 2018 09:27:59 +0200 Subject: [PATCH] Switch execution order of testsuites, unit tests first Unit tests usually run faster and provide more fine-granular feedback if something is broken. If some small part of the application is broken, it may easily cause all the feature tests to fail, while not providing useful feedback. --- phpunit.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/phpunit.xml b/phpunit.xml index c9e326b6959..4942aa2a318 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -9,13 +9,13 @@ processIsolation="false" stopOnFailure="false"> - - ./tests/Feature - - ./tests/Unit + + + ./tests/Feature +