diff options
author | Balazs Gibizer <balazs.gibizer@est.tech> | 2019-08-29 14:26:58 +0200 |
---|---|---|
committer | Matt Riedemann <mriedem.os@gmail.com> | 2019-08-29 14:45:48 -0400 |
commit | 3c1d9dab853b4605856dc1709ee7bf7512505b6e (patch) | |
tree | 6f1ecb087691feffcd250e47468b95af42063a87 /playbooks | |
parent | eb6fcb21917d56e4e287513c1159ad4656382714 (diff) | |
download | nova-3c1d9dab853b4605856dc1709ee7bf7512505b6e.tar.gz |
Move live_migration test hooks under gate/
This patch resolves a TODO in the .zuul.yaml about using common
irrelevant files in our dsvm jobs. To be able to do that we need to move
the test hooks from nova/tests/live_migraton under gate/.
Change-Id: I4e5352fd1a99ff2b4134a734eac6626be772caf1
Diffstat (limited to 'playbooks')
-rw-r--r-- | playbooks/legacy/nova-grenade-live-migration/run.yaml | 2 | ||||
-rw-r--r-- | playbooks/legacy/nova-live-migration/run.yaml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/playbooks/legacy/nova-grenade-live-migration/run.yaml b/playbooks/legacy/nova-grenade-live-migration/run.yaml index 7c476f117d..b4ac861d56 100644 --- a/playbooks/legacy/nova-grenade-live-migration/run.yaml +++ b/playbooks/legacy/nova-grenade-live-migration/run.yaml @@ -48,7 +48,7 @@ export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE fi function post_test_hook { - /opt/stack/new/nova/nova/tests/live_migration/hooks/run_tests.sh + /opt/stack/new/nova/gate/live_migration/hooks/run_tests.sh } export -f post_test_hook cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh diff --git a/playbooks/legacy/nova-live-migration/run.yaml b/playbooks/legacy/nova-live-migration/run.yaml index 215f61d66c..dd60e38a64 100644 --- a/playbooks/legacy/nova-live-migration/run.yaml +++ b/playbooks/legacy/nova-live-migration/run.yaml @@ -48,7 +48,7 @@ export DEVSTACK_GATE_TEMPEST_NOTESTS=1 export DEVSTACK_GATE_TOPOLOGY="multinode" function post_test_hook { - /opt/stack/new/nova/nova/tests/live_migration/hooks/run_tests.sh + /opt/stack/new/nova/gate/live_migration/hooks/run_tests.sh $BASE/new/nova/gate/test_evacuate.sh } export -f post_test_hook |