diff options
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 13 |
1 files changed, 1 insertions, 12 deletions
@@ -30,18 +30,7 @@ ifdef DB | |||
30 | endif | 30 | endif |
31 | -php bin/console doctrine:database:drop --force --env=test | 31 | -php bin/console doctrine:database:drop --force --env=test |
32 | php bin/console doctrine:database:create --env=test | 32 | php bin/console doctrine:database:create --env=test |
33 | ifndef DB ## make test does not define DB | 33 | php bin/console doctrine:migrations:migrate --no-interaction --env=test |
34 | php bin/console doctrine:schema:create --env=test | ||
35 | endif | ||
36 | ifeq ($(DB), sqlite) | ||
37 | php bin/console doctrine:schema:create --env=test | ||
38 | endif | ||
39 | ifeq ($(DB), mysql) | ||
40 | php bin/console doctrine:database:import data/sql/mysql_base.sql --env=test | ||
41 | endif | ||
42 | ifeq ($(DB), pgsql) | ||
43 | psql -h localhost -d wallabag_test -U travis -f data/sql/pgsql_base.sql | ||
44 | endif | ||
45 | 34 | ||
46 | fixtures: ## Load fixtures into database | 35 | fixtures: ## Load fixtures into database |
47 | php bin/console doctrine:fixtures:load --no-interaction --env=test | 36 | php bin/console doctrine:fixtures:load --no-interaction --env=test |