diff options
author | Stefan Kobza <skobza@cisco.com> | 2016-02-18 14:24:57 +0100 |
---|---|---|
committer | Stefan Kobza <skobza@cisco.com> | 2016-02-19 17:15:08 +0100 |
commit | b255549d4fee3a161c521a1a2bd8be3a0767189e (patch) | |
tree | 35c8fbcf6bece8ea1edb0e5283ddf058d7453ee7 /bootstrap.sh | |
parent | 03613f1079bf5b86a58dd061fe4dd232ae52c1ea (diff) |
Add hw/vm tags, add single link tag.
Add HW_EVN and VM_ENV tags to specify limitations on where the given
test could be run. For tests that should be run only on bare metal,
author of the test should add tag HW_ENV to it.
Add 3_NODE_SINGLE_LINK_TOPO tag, to specify requirement on topology,
where only one link is required in between any two nodes in the
topology.
Change-Id: I38c9a9732cad608bb6a9e4a2c5f1997236cd48b9
Signed-off-by: Stefan Kobza <skobza@cisco.com>
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-x | bootstrap.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/bootstrap.sh b/bootstrap.sh index c20bf47b22..455168c17a 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -32,5 +32,10 @@ virtualenv env echo pip install pip install -r requirements.txt -PYTHONPATH=`pwd` pybot -L TRACE -v TOPOLOGY_PATH:topologies/available/virl.yaml --exclude PERFTEST tests || true - +PYTHONPATH=`pwd` pybot -L TRACE \ + -v TOPOLOGY_PATH:topologies/available/virl.yaml \ + --include vm_env \ + --include 3_NODE_SINGLE_LINK_TOPO \ + --exclude 3_node_double_link_topoNOT3_node_single_link_topo \ + --exclude PERFTEST \ + tests/ |