X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=bootstrap.sh;h=349e4b607e379556c71f9b5dee3e17d80b4bb238;hb=a8c8bf7eb1130c1d9dedfd03b2437f1ac9c51d9b;hp=17d9e17e99d462dabaebba34b6eabc5924e8135c;hpb=ee768ca7451bb49f0a591bedf3360b332d983f64;p=csit.git diff --git a/bootstrap.sh b/bootstrap.sh index 17d9e17e99..349e4b607e 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -148,6 +148,17 @@ virtualenv env echo pip install pip install -r requirements.txt +pykwalify -s resources/topology_schemas/3_node_topology.sch.yaml \ + -s resources/topology_schemas/topology.sch.yaml \ + -d topologies/enabled/topology.yaml \ + -vvv + +result=$? +if [ "${result}" -ne "0" ]; then + echo "Topology schema validation failed." + echo "However, the tests will start." +fi + PYTHONPATH=`pwd` pybot -L TRACE \ -v TOPOLOGY_PATH:topologies/enabled/topology.yaml \ --include vm_envAND3_node_single_link_topo \