X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=systest%2Flib%2Fvmware%2Ffixtures.py;h=cb6cc7b5189f4f0d006d181b2a6c37539c1de191;hb=84fe31f632166d2fbf566968bd25aa9545e96fdc;hp=78ee80c32e817b2f4da9b3d30f3a86734fdb2359;hpb=f834e20a75108f81506e62e7139de95ad8e81002;p=osm%2Fdevops.git diff --git a/systest/lib/vmware/fixtures.py b/systest/lib/vmware/fixtures.py index 78ee80c3..cb6cc7b5 100644 --- a/systest/lib/vmware/fixtures.py +++ b/systest/lib/vmware/fixtures.py @@ -30,7 +30,7 @@ def vmware_add_options(parser): parser.addoption("--vcd-username", default="", help="VMware vCloud username") parser.addoption("--vcd-password", default="", help="VMware vCloud password") parser.addoption("--vcd-tenant-name", default="", help="VMware vCloud tenant name") - parser.addoption("--config", default="", help="VMware vCloud config paramters") + parser.addoption("--vcd-org", default="", help="VMware vCloud Organization name") @pytest.fixture def vmware(request): @@ -40,7 +40,8 @@ def vmware(request): access['vim-username'] = request.config.getoption("--vcd-username") access['vim-password'] = request.config.getoption("--vcd-password") access['vim-tenant-name'] = request.config.getoption("--vcd-tenant-name") - access['config'] = request.config.getoption("--config") + access['vcd-org'] = request.config.getoption("--vcd-org") + access['config'] = request.config.getoption("--vim-config") access['vim-type'] = 'vmware' access['description'] = 'pytest system test'