diff options
author | Jose Lausuch <jose.lausuch@ericsson.com> | 2017-01-18 16:45:13 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-01-18 16:45:13 +0000 |
commit | 9bc652fe41541a05f52c09d01a2e671eae5b2965 (patch) | |
tree | 681b03ba94a8d198aa7f10c5d82ff10fbc1dec1a /functest/opnfv_tests/mano | |
parent | 7e52f05a029811d2174cc6c851e95252bd99632b (diff) | |
parent | 3e921f50fb71ef93b441054c0444da5a4fa64b44 (diff) |
Merge "Add VnfOnBoarding Abstraction"
Diffstat (limited to 'functest/opnfv_tests/mano')
-rwxr-xr-x | functest/opnfv_tests/mano/orchestra.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/functest/opnfv_tests/mano/orchestra.py b/functest/opnfv_tests/mano/orchestra.py new file mode 100755 index 00000000..fd5e40d0 --- /dev/null +++ b/functest/opnfv_tests/mano/orchestra.py @@ -0,0 +1,24 @@ +#!/usr/bin/python +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +import functest.core.feature_base as base + + +class Orchestra(base.FeatureBase): + def __init__(self): + super(Orchestra, self).__init__(project='orchestra', + case='orchestra', + repo='dir_repo_orchestra') + # TODO + # self.cmd = "%s/tests/run.sh %s/tests" % (self.repo, self.repo) |