diff options
author | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2022-10-10 06:48:23 +0000 |
---|---|---|
committer | Fiachra Corcoran <fiachra.corcoran@est.tech> | 2022-10-10 11:30:46 +0000 |
commit | 797293fe047f27dba1450d8383e5fa7f79903c5e (patch) | |
tree | aefe6714ccdd98f6d727b1b298d494ff43b754db /healthcheck/docker | |
parent | 0deca819997406ad73edbb82039c301381dc8074 (diff) |
[ROBOT] Use upper constraints during pytehon-testing-utils installation
Installing the newest version of importlib_metadata breaks robot tests
execution.
Use the same upper constraints as in robot smoke tests for healtchecks
and benchmark docker images
Issue-ID: INT-2160
Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl>
Change-Id: I71700221c344162da76b51cec7cd59e67c8a1eee
Diffstat (limited to 'healthcheck/docker')
-rw-r--r-- | healthcheck/docker/Dockerfile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/healthcheck/docker/Dockerfile b/healthcheck/docker/Dockerfile index 80d64ad..6229f7f 100644 --- a/healthcheck/docker/Dockerfile +++ b/healthcheck/docker/Dockerfile @@ -17,8 +17,9 @@ RUN apk --no-cache add --update openssl chromium chromium-chromedriver && \ openssl-dev libjpeg-turbo-dev && \ pip3 install --upgrade pip && \ pip3 install --no-cache-dir \ - git+https://git.onap.org/testsuite/heatbridge.git@$ONAP_TAG#egg=heatbridge\&subdirectory=heatbridge \ - git+https://git.onap.org/testsuite/python-testing-utils.git@$ONAP_TAG#egg=robotframework-onap\&subdirectory=robotframework-onap && \ + -cupper-constraints.txt \ + git+https://git.onap.org/testsuite/heatbridge.git@$ONAP_TAG#egg=heatbridge\&subdirectory=heatbridge \ + git+https://git.onap.org/testsuite/python-testing-utils.git@$ONAP_TAG#egg=robotframework-onap\&subdirectory=robotframework-onap && \ git clone --depth 1 https://git.onap.org/testsuite -b $ONAP_TAG /var/opt/ONAP && \ git clone --depth 1 https://git.onap.org/demo -b $ONAP_TAG /src/demo && \ pip install \ |