From 6eedd079b37e91eadb24fbf9e41cc2f43c0472fb Mon Sep 17 00:00:00 2001 From: David Buchmann Date: Sun, 18 Feb 2024 01:13:16 +0100 Subject: [PATCH] ignore database creation failure because doctrine dbal decided to be a stickler --- bin/make/functional_tests_orm.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/make/functional_tests_orm.mk b/bin/make/functional_tests_orm.mk index 272369a..4c22f40 100644 --- a/bin/make/functional_tests_orm.mk +++ b/bin/make/functional_tests_orm.mk @@ -4,7 +4,7 @@ functional_tests_orm: @echo @echo '+++ create ORM database +++' @${CONSOLE} doctrine:schema:drop --env=orm --force - @${CONSOLE} doctrine:database:create --env=orm + @${CONSOLE} doctrine:database:create --env=orm || echo "Failed to create database. If this is sqlite, this is normal. Otherwise there will be an error with schema creation" @${CONSOLE} doctrine:schema:create --env=orm @echo '+++ run ORM functional tests +++' ifeq ($(HAS_XDEBUG), 0)