summaryrefslogtreecommitdiffstats
path: root/jjb/cperf/cperf-robot-netvirt-csit.sh
diff options
context:
space:
mode:
authorTim Rozet <trozet@redhat.com>2018-08-22 17:55:41 -0400
committerTim Rozet <trozet@redhat.com>2018-08-22 17:55:41 -0400
commit38ca028551d2e498fdfe41627f8bf79a43a6a0fa (patch)
tree9425ca40afaaa90745b1e6171c536e387eaddca3 /jjb/cperf/cperf-robot-netvirt-csit.sh
parent9585dc88d84923ef6fbadb950adf6db9e9e6653a (diff)
CPERF: Fix csit odltools install
PIP installing odltools attempts to install/update chardet which was already managed by yum in the container so need to remove it. Change-Id: Id07b76b080ff5b7e77d4c110c90a15018397d039 Signed-off-by: Tim Rozet <trozet@redhat.com>
Diffstat (limited to 'jjb/cperf/cperf-robot-netvirt-csit.sh')
-rwxr-xr-xjjb/cperf/cperf-robot-netvirt-csit.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/jjb/cperf/cperf-robot-netvirt-csit.sh b/jjb/cperf/cperf-robot-netvirt-csit.sh
index 4fdcd102b..15f8669a6 100755
--- a/jjb/cperf/cperf-robot-netvirt-csit.sh
+++ b/jjb/cperf/cperf-robot-netvirt-csit.sh
@@ -167,6 +167,7 @@ docker run -i --net=host \
opnfv/cperf:$DOCKER_TAG \
/bin/bash -c "source /tmp/overcloudrc; mkdir -p \$HOME/.ssh; cp /tmp/id_rsa \$HOME/.ssh; \
cd /home/opnfv/repos/odl_test/ && git pull origin master; \
+ yum remove -y python-chardet; \
pip install odltools; \
${robot_cmd} ${suites};"