From 92e012add60c67e55739c5a299f94b2a1dd6e758 Mon Sep 17 00:00:00 2001 From: Vitaly Karpenko Date: Fri, 8 Jul 2022 11:49:42 +0300 Subject: [PATCH] With-db-example .PHONY fix. --- examples/with-db-example/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/with-db-example/Makefile b/examples/with-db-example/Makefile index db7e841..845d38f 100644 --- a/examples/with-db-example/Makefile +++ b/examples/with-db-example/Makefile @@ -7,7 +7,7 @@ setup: teardown teardown: @docker-compose -f docker-compose.yaml down -v --remove-orphans -.PHONY: test +.PHONY: test-postgres test-postgres: setup ./gonkey -db_dsn "postgresql://testing_user:testing_password@localhost:5432/testing_db?sslmode=disable" -debug -host http://localhost:5000 -tests ./cases/postgres make teardown