mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
20 lines
583 B
Bash
20 lines
583 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# This script builds the Docker image to run the PostgreSQL tests, and then runs
|
||
|
# the tests. It uses a dedicated tox environment so that we don't have to
|
||
|
# rebuild it each time.
|
||
|
|
||
|
# Command line arguments to this script are forwarded to "tox" and then to "trial".
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# Build, and tag
|
||
|
docker build docker/ \
|
||
|
--build-arg "UID=$(id -u)" \
|
||
|
--build-arg "GID=$(id -g)" \
|
||
|
-f docker/Dockerfile-pgtests \
|
||
|
-t synapsepgtests
|
||
|
|
||
|
# Run, mounting the current directory into /src
|
||
|
docker run --rm -it -v "$(pwd):/src" -v synapse-pg-test-tox:/tox synapsepgtests "$@"
|