From 6aa6f19d52248efeede26794dbcf305fd2a641d4 Mon Sep 17 00:00:00 2001 From: Jamo Luhrsen Date: Tue, 27 Nov 2018 17:35:52 -0800 Subject: [PATCH] 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 --- jjb/integration/integration-apex-run-tests.sh | 1 + 1 file changed, 1 insertion(+) 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 -- 2.36.6