aboutsummaryrefslogtreecommitdiffstats
path: root/setup.sh
diff options
context:
space:
mode:
authormarekpl <marek.pondel@nokia.com>2018-10-24 14:33:25 +0200
committermarekpl <marek.pondel@nokia.com>2018-10-24 14:37:34 +0200
commit503647c4a628df771413d73a2ab7eef65cffc4f0 (patch)
treefd29ee64d784d93072684b1cbb76fcf88cb8f922 /setup.sh
parent021d5eb12ccb2ea6d44fd703cf0e56beb157429c (diff)
HV-VES TA sunny scenario
Robot Framework for HV-VES sunny scenario case Issue-ID: INT-650 Change-Id: I27476a821d9f51e4e4c2a5cf33a3a8a13b8c7f34 Signed-off-by: marekpl <marek.pondel@nokia.com>
Diffstat (limited to 'setup.sh')
-rwxr-xr-xsetup.sh15
1 files changed, 14 insertions, 1 deletions
diff --git a/setup.sh b/setup.sh
index 4d59eafc..0847080f 100755
--- a/setup.sh
+++ b/setup.sh
@@ -18,7 +18,8 @@ pip install --no-cache-dir --target="$path/robot/library" 'selenium<=3.0.0' 'req
'robotframework-databaselibrary==0.8.1' 'robotframework-extendedselenium2library==0.9.1' 'robotframework-requests==0.4.5' \
'robotframework-sshlibrary==2.1.2' \
'robotframework-sudslibrary==0.8' 'robotframework-ftplibrary==1.3' 'robotframework-rammbock==0.4.0.1' \
-'deepdiff==2.5.1' 'dnspython==1.15.0' 'robotframework-httplibrary==0.4.2' 'robotframework-archivelibrary==0.3.2' 'PyYAML==3.12'
+'deepdiff==2.5.1' 'dnspython==1.15.0' 'robotframework-httplibrary==0.4.2' 'robotframework-archivelibrary==0.3.2' 'PyYAML==3.12' \
+'robotframework-kafkalibrary==0.0.2'
# get the git for the eteutils you will need to add a private key to your ssh before this
@@ -96,3 +97,15 @@ else
curl $CHROMEDRIVER_URL/$CHROMEDRIVER_ZIP -o chromedriver.zip
unzip chromedriver.zip
fi
+
+
+#
+# Install kafkacat : https://github.com/edenhill/kafkacat
+#
+OS=`uname -s`
+case $OS in
+ Darwin)
+ brew install kafkacat ;;
+ Linux)
+ apt-get -y install kafkacat
+esac