From 5d1570c28517d619aba01742db38209b1844ae22 Mon Sep 17 00:00:00 2001 From: lukken <lukken@astron.nl> Date: Wed, 6 Oct 2021 08:24:54 +0000 Subject: [PATCH] L2SS-287: update device requirements paths --- .gitlab-ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6fc4cfff8..ba5788513 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,7 +19,7 @@ stages: newline_at_eof: stage: linting before_script: - - pip3 install -r devices/test-requirements.txt + - pip3 install -r tangostationcontrol/test-requirements.txt script: - flake8 --filename *.sh,*.conf,*.md,*.yml --select=W292 --exclude .tox,.egg-info,docker python_linting: @@ -44,6 +44,8 @@ unit_test: before_script: - sudo apt-get update - sudo apt-get install -y git + - pip3 install -r tangostationcontrol/test-requirements.txt + - pip3 install -r docker-compose/itango/lofar-requirements.txt script: - cd tangostationcontrol - tox -e py37 @@ -75,11 +77,11 @@ wheel_packaging: stage: packaging artifacts: paths: - - devices/dist/*.whl + - tangostationcontrol/dist/*.whl before_script: - sudo apt-get update - sudo apt-get install -y git - - pip3 install -r devices/test-requirements.txt + - pip3 install -r tangostationcontrol/test-requirements.txt - pip3 install -r docker-compose/itango/lofar-requirements.txt script: - cd tangostationcontrol -- GitLab