Files
repo/test/Makefile

8 lines
236 B
Makefile
Raw Normal View History

2025-05-04 21:13:19 +03:00
.PHONY: test
test:
docker run --rm -d -e POSTGRES_PASSWORD=postgres --name test-postgres -p 5432:5432 postgres:15.6-bookworm
sleep 10
PGX_DSN=postgres://postgres:postgres@127.0.0.1:5432 go test -v -cover
docker stop test-postgres