From f8c9e419e483354a0c45c881d7578ffd6dbb9a69 Mon Sep 17 00:00:00 2001 From: Martin Weise <martin.weise@tuwien.ac.at> Date: Mon, 4 Sep 2023 11:41:45 +0200 Subject: [PATCH] Removed docker endpoint --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8b68d8a15e..b58da4c0bb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ variables: - DOCKER_HOST: "${DOCKER_PORT}" - DOCKER_TLS_CERTDIR: "" - DOCKER_TLS_VERIFY: 0 +# DOCKER_HOST: "${DOCKER_PORT}" +# DOCKER_TLS_CERTDIR: "" +# DOCKER_TLS_VERIFY: 0 TAG: "${TAG:-latest}" TRIVY_NO_PROGRESS: "true" TRIVY_CACHE_DIR: ".trivycache/" @@ -99,7 +99,7 @@ test-analyse-service: needs: - build-analyse-service script: - - "pip install -r ./dbrepo-analyse-service/requirements.txt" + - "pip3 install -r ./dbrepo-analyse-service/requirements.txt" - "cd ./dbrepo-analyse-service/ && coverage run -m pytest test/test_determine_dt.py test/test_determine_pk.py --junitxml=report.xml && coverage html && coverage report > ./coverage.txt" - "cat ./coverage.txt | grep -o 'TOTAL[^%]*%'" artifacts: -- GitLab