From 2b1e8d08ed869124e4a363a0c5f58999f487a4be Mon Sep 17 00:00:00 2001 From: "arkadiusz.adamski" Date: Mon, 24 May 2021 12:50:40 +0100 Subject: Use python3 for CSITs - use python3 and pip3 in scripts - update robot-framework-http library, so it can use python3 - update selenium2library, so it can use python3 Issue-ID: POLICY-3092 Signed-off-by: arkadiusz.adamski Change-Id: I5a6a4fe43e54366859049e1d43bbce599dacd14e --- csit/drools-applications/plans/setup.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'csit/drools-applications') diff --git a/csit/drools-applications/plans/setup.sh b/csit/drools-applications/plans/setup.sh index 02d854c7..f8ca6326 100755 --- a/csit/drools-applications/plans/setup.sh +++ b/csit/drools-applications/plans/setup.sh @@ -2,6 +2,7 @@ # # ===========LICENSE_START==================================================== # Copyright (C) 2019-2021 AT&T Intellectual Property. All rights reserved. +# Modification Copyright 2021. Nordix Foundation. # ============================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,9 +20,9 @@ source ${SCRIPTS}/get-branch-mariadb.sh echo "Uninstall docker-py and reinstall docker." -pip uninstall -y docker-py -pip uninstall -y docker -pip install -U docker==2.7.0 +pip3 uninstall -y docker-py +pip3 uninstall -y docker +pip3 install -U docker sudo apt-get -y install libxml2-utils -- cgit 1.2.3-korg