diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2017-08-10 09:21:58 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-08-10 09:21:58 +0000 |
commit | 5412952848260b4cc83d455db4681daf9e37b657 (patch) | |
tree | 9dad4ec4fbd4946cc3ed1a5bb84d5726a5bfefa0 /functest | |
parent | cafd4b4d34bdebd8158c1b4c7b9dee272b570bb2 (diff) | |
parent | b0e9e37b70750c99e7fa58438e26266550775a45 (diff) |
Merge "Add copper and domino in functest-features"
Diffstat (limited to 'functest')
-rw-r--r-- | functest/ci/config_functest.yaml | 2 | ||||
-rw-r--r-- | functest/ci/testcases.yaml | 4 | ||||
-rw-r--r-- | functest/tests/unit/core/test_feature.py | 4 |
3 files changed, 4 insertions, 6 deletions
diff --git a/functest/ci/config_functest.yaml b/functest/ci/config_functest.yaml index 8da1d617..31ce4b90 100644 --- a/functest/ci/config_functest.yaml +++ b/functest/ci/config_functest.yaml @@ -10,8 +10,6 @@ general: repo_netready: /home/opnfv/repos/netready repo_barometer: /home/opnfv/repos/barometer repo_doctor: /home/opnfv/repos/doctor - repo_copper: /home/opnfv/repos/copper - repo_domino: /home/opnfv/repos/domino repo_odl_test: /src/odl_test repo_fds: /src/fds repo_securityscan: /home/opnfv/repos/securityscanning diff --git a/functest/ci/testcases.yaml b/functest/ci/testcases.yaml index 2fa7251c..99c0cc20 100644 --- a/functest/ci/testcases.yaml +++ b/functest/ci/testcases.yaml @@ -331,7 +331,7 @@ tiers: module: 'functest.core.feature' class: 'BashFeature' args: - cmd: 'cd /home/opnfv/repos/copper/tests && bash run.sh && cd -' + cmd: 'cd /src/copper/tests && bash run.sh && cd -' - case_name: multisite @@ -411,7 +411,7 @@ tiers: module: 'functest.core.feature' class: 'BashFeature' args: - cmd: 'cd /home/opnfv/repos/domino && ./tests/run_multinode.sh' + cmd: 'cd /src/domino && ./tests/run_multinode.sh' - case_name: gluon_vping diff --git a/functest/tests/unit/core/test_feature.py b/functest/tests/unit/core/test_feature.py index 988981ef..553a5dfa 100644 --- a/functest/tests/unit/core/test_feature.py +++ b/functest/tests/unit/core/test_feature.py @@ -22,8 +22,8 @@ class FeatureTestingBase(unittest.TestCase): _case_name = "foo" _project_name = "bar" - _repo = "dir_repo_copper" - _cmd = "cd /home/opnfv/repos/foo/tests && bash run.sh && cd -" + _repo = "dir_repo_bar" + _cmd = "cd /home/opnfv/repos/bar/tests && bash run.sh && cd -" _output_file = '/home/opnfv/functest/results/foo.log' feature = None |