From 025162e610b3001d97a1a84ec157821f87513474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kili=C3=A7=20Ilkan=20Fabrice?= Date: Mon, 28 Aug 2023 12:42:46 +0200 Subject: [PATCH] fix ci --- .gitlab-ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6269ff65..22b5115f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,6 @@ include: - project: cells/ci - file: /ci/lib/tox-bb5.yml + file: /ci/lib/common.yml workflow: # run for the default branch and all types of merge request pipelines, but not for tags @@ -12,6 +12,8 @@ tests: stage: test tags: - bb5_map + variables: + PIP_PACKAGES: tox before_script: - !reference [.define-functions] - !reference [.bb5, clean-env] @@ -22,7 +24,8 @@ tests: - !reference [.setup-venv] - !reference [.gitlab-access] script: + - pip install $PIP_PACKAGES - pip install . # Install the package itself - git clone git@bbpgitlab.epfl.ch:cells/bluepyemodelnexus.git - cd bluepyemodelnexus - - python -mtox + - tox