Files
repo/test/Makefile

9 lines
267 B
Makefile
Raw Permalink Normal View History

2025-05-03 21:35:32 +03:00
.PHONY: test
test:
docker run --rm -d -e POSTGRES_PASSWORD=postgres --name test-postgres -p 5432:5432 postgres:15.6-bookworm
2025-08-30 10:30:53 +03:00
# wait for postgres to launch
2025-05-03 21:35:32 +03:00
sleep 10
PGX_DSN=postgres://postgres:postgres@127.0.0.1:5432 go test -v -cover
docker stop test-postgres