diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-12-01 12:01:29 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-12-01 12:01:29 +0000 |
commit | 8c902431baf5cc7b5a9208e235350d6e348ce959 (patch) | |
tree | 85bb6598cd7aaff3bc970816a440afe1f38dae51 /jenkins.sh | |
parent | Use a PORT_BASE environment variable to configure the ports that sytest uses (diff) | |
download | synapse-8c902431baf5cc7b5a9208e235350d6e348ce959.tar.xz |
Set the port when running sytest under postgresql
Diffstat (limited to 'jenkins.sh')
-rwxr-xr-x | jenkins.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jenkins.sh b/jenkins.sh index 63d80ab355..26e0088cd9 100755 --- a/jenkins.sh +++ b/jenkins.sh @@ -64,7 +64,7 @@ done if test $RUN_POSTGRES = ":$(($PORT_BASE + 1)):$(($PORT_BASE + 2))"; then echo >&2 "Running sytest with PostgreSQL"; pip install psycopg2 - ./run-tests.pl -O tap --synapse-directory .. --all > results.tap + ./run-tests.pl -O tap --synapse-directory .. --all --port-base $PORT_BASE > results.tap else echo >&2 "Skipping running sytest with PostgreSQL, $RUN_POSTGRES" fi |