From 6d7a0dbc926a10c6d815fc787ce40e682aecfb90 Mon Sep 17 00:00:00 2001 From: Hugo Sales Date: Mon, 16 Aug 2021 20:31:24 +0100 Subject: [PATCH] [TESTS][TOOLS] Always stop containers regardless of test success --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 69c320cf22..d84d06df65 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ psql-shell: .PHONY docker exec -it $(strip $(DIR))_db_1 sh -c "psql -U postgres social" test: .PHONY - cd docker/testing && docker-compose run php && docker-compose down + cd docker/testing && docker-compose run php; docker-compose down stop-test: .PHONY cd docker/testing && docker-compose down