From 486e33a6bfb1b1d348e58fc977bce50478410c7f Mon Sep 17 00:00:00 2001 From: Adrien Gallou Date: Sun, 25 Feb 2024 15:44:26 +0100 Subject: [PATCH] =?UTF-8?q?on=20cr=C3=A9e=20bien=20le=20dossier=20temporai?= =?UTF-8?q?re=20lors=20des=20tests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index be243703e..12b4386dc 100644 --- a/Makefile +++ b/Makefile @@ -66,7 +66,7 @@ test: ./bin/php-cs-fixer fix --dry-run -vv -test-functional: data config htdocs/uploads +test-functional: data config htdocs/uploads tmp CURRENT_UID=$(CURRENT_UID) $(DOCKER_COMPOSE_BIN) stop dbtest apachephptest planetetest mailcatcher CURRENT_UID=$(CURRENT_UID) $(DOCKER_COMPOSE_BIN) up -d dbtest apachephptest planetetest mailcatcher CURRENT_UID=$(CURRENT_UID) $(DOCKER_COMPOSE_BIN) run --no-deps --rm cliphp ./bin/behat @@ -80,6 +80,9 @@ data: htdocs/uploads: mkdir htdocs/uploads +tmp: + mkdir -p tmp + hooks: .git/hooks/pre-commit .git/hooks/post-checkout .git/hooks/pre-commit: Makefile