From ff3adea7498e310c9530d9620992dd43ac149ef4 Mon Sep 17 00:00:00 2001 From: leufen1 <l.leufen@fz-juelich.de> Date: Fri, 19 Feb 2021 09:06:34 +0100 Subject: [PATCH] add uninstall command for six --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 75a77bb3..5b47f1fa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -96,6 +96,7 @@ tests: - chmod +x ./CI/update_badge.sh - ./CI/update_badge.sh > /dev/null script: + - pip uninstall six - pip install -r requirements.txt - chmod +x ./CI/run_pytest.sh - ./CI/run_pytest.sh @@ -120,6 +121,7 @@ coverage: - chmod +x ./CI/update_badge.sh - ./CI/update_badge.sh > /dev/null script: + - pip uninstall six - pip install -r requirements.txt - chmod +x ./CI/run_pytest_coverage.sh - ./CI/run_pytest_coverage.sh @@ -142,6 +144,7 @@ sphinx docs: - chmod +x ./CI/update_badge.sh - ./CI/update_badge.sh > /dev/null script: + - pip uninstall six - pip install -r requirements.txt - pip install -r docs/requirements_docs.txt - chmod +x ./CI/create_documentation.sh -- GitLab