mirror of
https://example.com
synced 2024-11-22 03:06:39 +09:00
dev: remove revert test from Make recipe
This commit is contained in:
parent
99f05f3b09
commit
f8ac643681
1 changed files with 13 additions and 13 deletions
26
Makefile
26
Makefile
|
@ -35,22 +35,22 @@ pre-commit: test format shellcheck update-lockfiles regenerate-entities neko/ind
|
|||
|
||||
|
||||
.PHONY: test
|
||||
test: test-revert
|
||||
test: # test-revert
|
||||
|
||||
|
||||
.PHONY: test-revert
|
||||
test-revert: $(T)/test-revert
|
||||
# .PHONY: test-revert
|
||||
# test-revert: $(T)/test-revert
|
||||
|
||||
$(T)/test-revert: neko/revert.sql $(MIGRATIONS)
|
||||
cd dev && \
|
||||
podman-compose exec db \
|
||||
psql \
|
||||
--echo-all \
|
||||
--user=$(POSTGRES_USER) \
|
||||
--dbname=$(POSTGRES_DB) \
|
||||
--set='ON_ERROR_STOP=1' \
|
||||
--command="$$(printf '%s\nROLLBACK;' "$$(cat ../neko/revert.sql | sed '$$ d')")"
|
||||
touch $@
|
||||
# $(T)/test-revert: neko/revert.sql $(MIGRATIONS)
|
||||
# cd dev && \
|
||||
# podman-compose exec db \
|
||||
# psql \
|
||||
# --echo-all \
|
||||
# --user=$(POSTGRES_USER) \
|
||||
# --dbname=$(POSTGRES_DB) \
|
||||
# --set='ON_ERROR_STOP=1' \
|
||||
# --command="$$(printf '%s\nROLLBACK;' "$$(cat ../neko/revert.sql | sed '$$ d')")"
|
||||
# touch $@
|
||||
|
||||
|
||||
.PHONY: update-lockfiles
|
||||
|
|
Loading…
Reference in a new issue