CI fix for the plugin version variable

Plugin version has been hardcoded - it affects support of the plugin.
We need a method to change version by CI.

Change-Id: I4a636cb52016715701723f9a60e2301a67821fc5
This commit is contained in:
Ruslan Khozinov 2016-11-23 16:48:48 +03:00
parent f70efb188c
commit c9aed0a145
1 changed files with 2 additions and 2 deletions

View File

@ -44,8 +44,8 @@ class TestNSXvPlugin(TestBasic):
"""Here are automated tests from test plan that has mark 'Automated'."""
_common = None
plugin_name = 'nsxv'
plugin_version = '3.0.0'
plugin_name = os.getenv('NSXV_PLUGIN_NAME','nsxv')
plugin_version = os.getenv('NSXV_PLUGIN_VERSION','3.0.1')
net1 = {'name': 'net_1', 'cidr': '192.168.112.0/24'}
net2 = {'name': 'net_2', 'cidr': '192.168.113.0/24'}