From c780a8069b18341b85f6f665972dc8769ca750b7 Mon Sep 17 00:00:00 2001 From: Niclas Esser <nesser@mpifr-bonn.mpg.de> Date: Sun, 28 Jan 2024 11:52:00 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 18812a6..c963e28 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,7 +23,7 @@ unittest: stage: test image: python:3.9.18-bookworm before_script: - - pip install coverage + - pip install --user coverage script: - bash run_tests.sh @@ -31,7 +31,7 @@ coverage_python: stage: stats image: python:3.9.18-bookworm script: - - pip install coverage + - pip install --user coverage - coverage xml --include="dbbc/*" - coverage html --include="dbbc/*" - coverage report --include="dbbc/*" -- GitLab