diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2018-09-20 18:12:45 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-20 18:12:45 +1000 |
commit | 741571cf22b342f2cfaf5c47f324397af7072bb3 (patch) | |
tree | 533b49f29941694a0849cd3382dceb4429171907 /docker/Dockerfile-pgtests | |
parent | Add a regression test for logging on failed connections (#3912) (diff) | |
download | synapse-741571cf22b342f2cfaf5c47f324397af7072bb3.tar.xz |
Add a way to run tests in PostgreSQL in Docker (#3699)
Diffstat (limited to 'docker/Dockerfile-pgtests')
-rw-r--r-- | docker/Dockerfile-pgtests | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docker/Dockerfile-pgtests b/docker/Dockerfile-pgtests new file mode 100644 index 0000000000..7da8eeb9eb --- /dev/null +++ b/docker/Dockerfile-pgtests @@ -0,0 +1,12 @@ +# Use the Sytest image that comes with a lot of the build dependencies +# pre-installed +FROM matrixdotorg/sytest:latest + +# The Sytest image doesn't come with python, so install that +RUN apt-get -qq install -y python python-dev python-pip + +# We need tox to run the tests in run_pg_tests.sh +RUN pip install tox + +ADD run_pg_tests.sh /pg_tests.sh +ENTRYPOINT /pg_tests.sh |