pg-libphonenumber/docker/run-tests.sh

10 lines
228 B
Bash

#!/bin/sh
# Used in the Docker image to run tests
PGDATA=/var/lib/postgresql/data
pg_ctl=/usr/lib/postgresql/${PG_MAJOR}/bin/pg_ctl
"$pg_ctl" "--pgdata=${PGDATA}" start -w
make installcheck
"$pg_ctl" "--pgdata=${PGDATA}" stop