summaryrefslogtreecommitdiff
path: root/test_postgresql.sh
blob: 1ffcaabd313356425452d56acb8defad0e11b4f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

# This script builds the Docker image to run the PostgreSQL tests, and then runs
# the tests.

set -e

# Build, and tag
docker build docker/ -f docker/Dockerfile-pgtests -t synapsepgtests

# Run, mounting the current directory into /src
docker run --rm -it -v $(pwd)\:/src synapsepgtests