diff --git a/jenkins-postgres.sh b/jenkins-postgres.sh
index 876fabdc71472630e912171bd48bf9b1e0e8a378..9ac86d259360b5c395f74b2b295dbf727b88aa67 100755
--- a/jenkins-postgres.sh
+++ b/jenkins-postgres.sh
@@ -46,7 +46,8 @@ git checkout "${GIT_BRANCH}" || (echo >&2 "No ref ${GIT_BRANCH} found, falling b
 ./jenkins/prep_sytest_for_postgres.sh
 
 echo >&2 "Running sytest with PostgreSQL";
-./jenkins/install_and_run.sh --python $TOX_BIN/python \
+./jenkins/install_and_run.sh --coverage \
+                             --python $TOX_BIN/python \
                              --synapse-directory $WORKSPACE \
                              --port-base $PORT_BASE
 
diff --git a/jenkins-sqlite.sh b/jenkins-sqlite.sh
index ff6664276de5688ff9fa400e6177c8273a55cdf6..345d01936c50a1c6c306c98504b51b89436ad4cf 100755
--- a/jenkins-sqlite.sh
+++ b/jenkins-sqlite.sh
@@ -40,7 +40,8 @@ cd sytest
 git checkout "${GIT_BRANCH}" || (echo >&2 "No ref ${GIT_BRANCH} found, falling back to develop" ; git checkout develop)
 
 : ${PORT_BASE:=8500}
-./jenkins/install_and_run.sh --python $TOX_BIN/python \
+./jenkins/install_and_run.sh --coverage \
+                             --python $TOX_BIN/python \
                              --synapse-directory $WORKSPACE \
                              --port-base $PORT_BASE