From 33a852f26d799d26a9d46c99ea18e002b4912e75 Mon Sep 17 00:00:00 2001 From: Uladzimir Tsykun Date: Sun, 3 Dec 2023 19:23:03 +0100 Subject: [PATCH] Support mysql in tests --- .github/workflows/run_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 2af3740d..db72a8f6 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -96,7 +96,7 @@ jobs: bin/console doctrine:schema:update --force --complete gunzip -c tests/dump/test.db.gz > tests/dump/test.db - php tests/import_db.php 'sqlite:////${PWD}/tests/dump/test.db' 'mysql://root:123456@127.0.0.1/packeton?serverVersion=8.0&charset=utf8mb4' + php tests/import_db.php sqlite:////${PWD}/tests/dump/test.db mysql://root:123456@127.0.0.1:3306/packeton - name: "Run tests" run: "composer tests"