From dc47976d1552f783b44b03b53ff9110bb052f815 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corn=C3=A9=20Lukken?= <lukken@astron.nl> Date: Thu, 14 Sep 2023 11:05:52 +0000 Subject: [PATCH] L2SS-1450: Add multi project integration test (TMSS, COBALT, Station Control) --- .gitlab-ci.yml | 10 ++++++++++ README.md | 1 + tangostationcontrol/VERSION | 2 +- tangostationcontrol/tox.ini | 2 +- 4 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 89caf1660..7afde2597 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -279,6 +279,16 @@ integration_test_docker: paths: - log/ +multi_project_integration_test: + stage: integration-tests + variables: + TANGO_VERSION: $CI_COMMIT_SHA + COBALT_VERSION: main + LOFAR_VERSION: master + trigger: + project: lofar2.0/multi-project-integration + strategy: depend + wheel_packaging: stage: packaging rules: diff --git a/README.md b/README.md index 48c5c8a8d..904e96ee4 100644 --- a/README.md +++ b/README.md @@ -115,6 +115,7 @@ Next change the version in the following places: # Release Notes +* 0.21.1 Implement multi project integration downstream pipeline * 0.21.0 Use radians instead of degrees when interpreting pointings * 0.20.5 Manage both polarisations in RCU_band_select_R(W), Antenna_Loss_R, and Frequency_Band_RW * 0.20.4 Collapse AbstractHierarchyDevice and AbstractHierarchy into one class diff --git a/tangostationcontrol/VERSION b/tangostationcontrol/VERSION index 885415662..a67cebaf7 100644 --- a/tangostationcontrol/VERSION +++ b/tangostationcontrol/VERSION @@ -1 +1 @@ -0.21.0 +0.21.1 diff --git a/tangostationcontrol/tox.ini b/tangostationcontrol/tox.ini index 07cf254e6..788c2fb70 100644 --- a/tangostationcontrol/tox.ini +++ b/tangostationcontrol/tox.ini @@ -27,7 +27,7 @@ commands_pre = {envpython} --version commands = {envpython} -m pytest --version - {envpython} -m pytest -v --log-level=DEBUG --forked test/{posargs} + {envpython} -m pytest -v --log-level=DEBUG --forked test/{posargs} ; We can't detect the current Python version for an environment dynamically ; so each Python version specific job needs its own envdir. -- GitLab