File: installcheck

package info (click to toggle)
pgsql-http 1.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 276 kB
  • sloc: ansic: 1,211; sql: 483; makefile: 22; sh: 9
file content (15 lines) | stat: -rwxr-xr-x 190 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

set -eux

# start test http server
gunicorn \
    -b 127.0.0.1:9080 \
    -k gevent \
    httpbin:app &

PID="$!"
trap "kill $PID" EXIT
sleep 0.2

pg_buildext installcheck "$@"