diff options
author | chenjiankun <chenjiankun1@huawei.com> | 2018-01-26 08:22:59 +0000 |
---|---|---|
committer | chenjiankun <chenjiankun1@huawei.com> | 2018-01-26 08:22:59 +0000 |
commit | fe07ad5754450cc50f84d51f474f47dc53597582 (patch) | |
tree | cc2437ccbbcbe43ce4a58269d86a7f0457c584a7 /cvp/opnfv_testapi/resources/test_models.py | |
parent | c47b8dde0e39e273372b091a3d8da1cc15b7ae9f (diff) |
Bugfix: Cannot change SUT version in the new uploaded test
If we upload a new test, we can't modify the SUT version.
The reason is we must predefine the model.
Change-Id: I8822b078c25a015dd4cc4becfdaae141aed66359
Signed-off-by: chenjiankun <chenjiankun1@huawei.com>
Diffstat (limited to 'cvp/opnfv_testapi/resources/test_models.py')
-rw-r--r-- | cvp/opnfv_testapi/resources/test_models.py | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/cvp/opnfv_testapi/resources/test_models.py b/cvp/opnfv_testapi/resources/test_models.py index 24b4d17b..3829cd6d 100644 --- a/cvp/opnfv_testapi/resources/test_models.py +++ b/cvp/opnfv_testapi/resources/test_models.py @@ -51,9 +51,18 @@ class Test(models.ModelBase): @property trust_indicator: used for long duration test case @ptype trust_indicator: L{TI} """ - def __init__(self, _id=None, owner=None, results=[], - public="false", review="false", status="private", - shared=[], filename="", label="", trust_indicator=None): + def __init__(self, + _id=None, + owner=None, + results=[], + public="false", + review="false", + status="private", + shared=[], + filename="", + label="", + sut_label="", + trust_indicator=None): self._id = _id self.owner = owner self.results = results @@ -64,6 +73,7 @@ class Test(models.ModelBase): self.shared = shared self.filename = filename self.label = label + self.sut_label = sut_label @swagger.model() |