diff options
author | DR695H <dr695h@att.com> | 2019-05-14 11:48:20 -0400 |
---|---|---|
committer | DR695H <dr695h@att.com> | 2019-05-14 11:51:57 -0400 |
commit | 0ca56d1bc3ff43e8aca4c330283a01c6a422405a (patch) | |
tree | df3c495769b59e93588557e2bb4e0746d3df3715 /setup.sh | |
parent | a9107a734e443c257a114812fb830a3628808efb (diff) |
remove unneeded libraries
httplibrary is replicated with requests so replacing the few places that
use it with the requests. also removing kafkalibrary since it isnt used
and we dont want to use it since its not python 3 compatible.
Change-Id: I4acd09e4f0f776ebf99f386d17637712551b3243
Issue-ID: TEST-155
Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'setup.sh')
-rwxr-xr-x | setup.sh | 15 |
1 files changed, 12 insertions, 3 deletions
@@ -25,9 +25,7 @@ pip install \ 'robotframework-sshlibrary==3.3.0' \ 'robotframework-ftplibrary==1.6' \ 'robotframework-rammbock==0.4.0.1' \ -'robotframework-httplibrary==0.4.2' \ 'robotframework-archivelibrary==0.4.0' \ -'robotframework-kafkalibrary==0.0.2' \ 'robotframework-onap==0.4' @@ -96,4 +94,15 @@ else unzip $CHROMEDRIVER_TARGET fi rm -rf $CHROMEDRIVER_TARGET -fi
\ No newline at end of file +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
\ No newline at end of file |