From 59cc36ca652ce71b59194166e6192e1609aa6f49 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Wed, 9 Oct 2019 17:34:40 +0200 Subject: [PATCH] don't fetch riot/master by default when installing e2e tests --- test/end-to-end-tests/install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/end-to-end-tests/install.sh b/test/end-to-end-tests/install.sh index e1fed144ce..bb88785741 100755 --- a/test/end-to-end-tests/install.sh +++ b/test/end-to-end-tests/install.sh @@ -2,5 +2,7 @@ # run with PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true sh install.sh if chrome is already installed set -e ./synapse/install.sh -./riot/install.sh +# both CI and local testing don't need a riot fetched from master, +# so not installing this by default anymore +# ./riot/install.sh yarn install