From 14566ff3a02f53579a27183778d81d8e79dad029 Mon Sep 17 00:00:00 2001 From: Louis DUFOUR Date: Fri, 15 Sep 2023 14:47:29 +0200 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'.drone.yml'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 94cdaa5..b1e069e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -25,4 +25,6 @@ stages: run_tests: stage: test script: - - vendor/bin/phpunit common/Tests \ No newline at end of file + - echo "Début des tests unitaires..." + - vendor/bin/phpunit common/Tests + - if [ $? -eq 0 ]; then echo "Tous les tests ont réussi!"; else echo "Certains tests ont échoué!"; exit 1; fi