From: Jamo Luhrsen Date: Wed, 28 Nov 2018 01:35:52 +0000 (-0800) Subject: Add blank TOOLS_SYSTEM_IP var to pybot cmdline X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=6aa6f19d52248efeede26794dbcf305fd2a641d4;p=releng%2Fbuilder.git Add blank TOOLS_SYSTEM_IP var to pybot cmdline When running the full list of netvirt suites with the apex snapshots, the l2l3_gateway_mac_arp suite sources a bgp robot lib which in turn tries to reference the TOOLS_SYSTEM_IP. This is not needed or used in any of the suites, but because it's sourced but not initialized (even to null) we will get an ugly error in the robot html report. looks something like: ERROR Error in file Variable '${TOOLS_SYSTEM_IP}' not found. adding it here as a null value will remove that error Change-Id: I0bda42e3127cb38f943a7b5b014f13a88da194bd Signed-off-by: Jamo Luhrsen --- diff --git a/jjb/integration/integration-apex-run-tests.sh b/jjb/integration/integration-apex-run-tests.sh index a34dbe92e..7b7d128fb 100644 --- a/jjb/integration/integration-apex-run-tests.sh +++ b/jjb/integration/integration-apex-run-tests.sh @@ -152,6 +152,7 @@ for suite in ${SUITES}; do -v RESTCONFPORT:8081 \ -v SECURITY_GROUP_MODE:${SECURITY_GROUP_MODE} \ -v SSH_KEY:robot_id_rsa \ + -v TOOLS_SYSTEM_IP: \ -v USER_HOME:${HOME} \ -v WORKSPACE:/tmp \ ${TESTOPTIONS} ${suite} || true