From e6a599cd0f9bdac06aecf6b4ee551d850351d2ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20K=C3=BCnzel?= <simonk@fsmpi.rwth-aachen.de> Date: Sat, 1 Mar 2025 23:11:29 +0100 Subject: [PATCH] fixup! Add package caching for CI --- api/build_config.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/api/build_config.py b/api/build_config.py index ad3978b..8499e5c 100644 --- a/api/build_config.py +++ b/api/build_config.py @@ -26,13 +26,14 @@ CI_TEST_JOB_TEMPLATE = """\ timeout: 30m variables: VIDEOAG_CONFIG: /code/config/api_example_config.py + COVERAGE_REPORT_DIR: $CI_PROJECT_DIR/coverage script: - cd /code - ./docker_start.sh -test artifacts: paths: - - /code/coverage/report.txt - - /code/coverage/html/* + - $CI_PROJECT_DIR/coverage/report.txt + - $CI_PROJECT_DIR/coverage/html/ services: - name: postgres:17 # So we can have the same host for local and CI testing -- GitLab