diff options
author | Pawel Wieczorek <p.wieczorek2@samsung.com> | 2020-08-11 12:21:02 +0200 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2020-09-23 06:38:07 +0000 |
commit | c0705164a2bbb730b3f09106811bd0fe0806fc63 (patch) | |
tree | 573f3bd89e51cfb9a85a8ba7f5c02424d599e7b6 /deployment/noheat/infra-openstack/vagrant/test/destroy_network.test | |
parent | fad907c88a3cbaf9f79d661561625c36d504c0a4 (diff) |
Set up and tear down test environment properly
Two issues were detected during testing deployment locally:
- incomplete provisioning if set up from scratch [1],
- leaving DevStack in unknown state if test failed.
[1] https://www.vagrantup.com/docs/cli/up#provision-with-x-y-z
Issue-ID: INT-1601
Change-Id: Ie553ba71a2b56789736ab822f1f1a2e4043f4935
Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
Diffstat (limited to 'deployment/noheat/infra-openstack/vagrant/test/destroy_network.test')
-rwxr-xr-x | deployment/noheat/infra-openstack/vagrant/test/destroy_network.test | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/deployment/noheat/infra-openstack/vagrant/test/destroy_network.test b/deployment/noheat/infra-openstack/vagrant/test/destroy_network.test index 173b3ecca..182d7dcaf 100755 --- a/deployment/noheat/infra-openstack/vagrant/test/destroy_network.test +++ b/deployment/noheat/infra-openstack/vagrant/test/destroy_network.test @@ -5,8 +5,9 @@ export NETWORK_NAME='onap_ci_lab' export VAGRANT_CWD='..' set_up() { - vagrant up --provision-with=run_playbook_create - vagrant up --provision-with=run_playbook_destroy + vagrant up + vagrant provision --provision-with=run_playbook_create + vagrant provision --provision-with=run_playbook_destroy } check() { |