diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dce5103dc55a902208e37b59d47b558ba2f6244b..cf4b8f8c3b4f83e015dd404c538f5d79e0980270 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -51,7 +51,7 @@ unittests: - echo 'DATABASE_USER_HOST_LIST="%,"' >> .config - echo "MYSQL_USER_PASSWORD=$MYSQL_ROOT_PASSWORD" >> .config - echo "MYSQL_HOST=mariadb" >> .config - - ./utils/make_db restore tests/example.dump.sql + - ./utils/make_db restore_db tests/example.dump.sql - ./tests/test_utils.sh # Build a docker image in which tests for this repository can run diff --git a/utils/make_db b/utils/make_db index d13decc151fee628c5570f8678f6789acabc2fd7..e1cdc2f8673de6e043a67e85106f40c7c655c2f0 100755 --- a/utils/make_db +++ b/utils/make_db @@ -198,6 +198,5 @@ case $1 in "test-connection") test-connection ;; "install_db") install_db ;; "restore_db") restore_db $2 ;; - # "prep_sql") prepare_sql ;; *) echo "Unknown action: $1" esac