Add blank TOOLS_SYSTEM_IP var to pybot cmdline 40/78240/3
authorJamo Luhrsen <jluhrsen@redhat.com>
Wed, 28 Nov 2018 01:35:52 +0000 (17:35 -0800)
committerJamo Luhrsen <jluhrsen@redhat.com>
Wed, 28 Nov 2018 04:43:33 +0000 (20:43 -0800)
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 <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 <jluhrsen@redhat.com>
jjb/integration/integration-apex-run-tests.sh

index a34dbe92ea76d1d0a3ea9fbbc56f22f0f96c0438..7b7d128fbd83861be7d8dbca51fe3f84b897580a 100644 (file)
@@ -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