Change regex expression for new test case

Blazar has two type of reservation scenarioes. Previous regrex only
matches one of the scenarioes.

Change-Id: I270721a0fe79de326f47d420a1ef2da555b3eb73
This commit is contained in:
Masahito Muroi 2017-01-26 17:24:58 +09:00
parent 545a0340b6
commit 17c3fb4251
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@
export DEVSTACK_LOCAL_CONFIG="enable_plugin blazar git://git.openstack.org/openstack/blazar"
# Construct a regex to limiting scope of tempest
r="^(?:tempest\.cli\.simple_read_only\.test_resource_.*)"
r="$r|^(?:tempest\.scenario\.test_resource_.*)"
r="^(?:tempest\.cli\.simple_read_only\.test_.*reservation.*)"
r="$r|^(?:tempest\.scenario\.test_.*reservation.*)"
export DEVSTACK_GATE_TEMPEST_REGEX="$r"
function pre_test_hook {