18874: Pass additional args to cypress test runner.
[arvados.git] / services / workbench2 / tools / run-integration-tests.sh
index ece13cae1837dbaac61211ea3ceaf5b2a928d85f..ab7af4b6018af9f18db726c19c1d6647429e3637 100755 (executable)
@@ -97,9 +97,9 @@ fi
 if [ ! -x ${GOPATH:-${HOME}/go}/bin/arvados-server ]; then
     echo "Building & installing arvados-server..."
     cd ${ARVADOS_DIR}
-    go mod download || exit 1
+    GOFLAGS=-buildvcs=false go mod download || exit 1
     cd cmd/arvados-server
-    go install
+    GOFLAGS=-buildvcs=false go install
     cd -
 
     echo "Installing dev dependencies..."
@@ -148,4 +148,4 @@ echo "Running tests..."
 CYPRESS_system_token=systemusertesttoken1234567890aoeuidhtnsqjkxbmwvzpy \
     CYPRESS_controller_url=${controllerURL} \
     CYPRESS_BASE_URL=https://127.0.0.1:${WB2_PORT} \
-    yarn run cypress ${CYPRESS_MODE}
+    yarn run cypress ${CYPRESS_MODE} "$@"