diff options
author | helenyao <yaohelan@huawei.com> | 2016-12-13 05:18:45 -0500 |
---|---|---|
committer | helenyao <yaohelan@huawei.com> | 2016-12-13 05:23:42 -0500 |
commit | 0d2470130c9889b4dfb7a0de714c94d804d4ad53 (patch) | |
tree | 68a8fe8aa0fadb2337311eec6ee633fbc78403e3 | |
parent | c0ee7b13e6facd1ef8fb8a936b1e3f819a764316 (diff) |
CI-Build-Fix: Move the connection check to smoke
JIRA: FUNCTEST-648
The run_test.py first searches for tier, if no name is matched, it will continue to search for testcase.
That said, for 'functest testcase run healthcheck', it will run all testcases under 'healthchech' tier.
The connection check blocked the CI build.
Change-Id: I4e14cb0f269175803d027756d5581fd1867b3147
Signed-off-by: helenyao <yaohelan@huawei.com>
-rwxr-xr-x | functest/ci/testcases.yaml | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/functest/ci/testcases.yaml b/functest/ci/testcases.yaml index d57ac3060..6a11a03f4 100755 --- a/functest/ci/testcases.yaml +++ b/functest/ci/testcases.yaml @@ -19,24 +19,6 @@ tiers: installer: '' scenario: '^((?!lxd).)*$' - - - name: connection_check - criteria: 'status == "PASS"' - blocking: true - description: >- - This test case verifies the retrieval of OpenStack clients: - Keystone, Glance, Neutron and Nova and may perform some - simple queries. When the config value of - snaps.use_keystone is True, functest must have access to - the cloud's private network. - - dependencies: - installer: '' - scenario: '' - run: - module: 'functest.opnfv_tests.openstack.snaps.connection_check' - class: 'ConnectionCheck' - - name: smoke order: 1 @@ -125,6 +107,24 @@ tiers: scenario: 'onos' - + name: connection_check + criteria: 'status == "PASS"' + blocking: true + description: >- + This test case verifies the retrieval of OpenStack clients: + Keystone, Glance, Neutron and Nova and may perform some + simple queries. When the config value of + snaps.use_keystone is True, functest must have access to + the cloud's private network. + + dependencies: + installer: '' + scenario: '' + run: + module: 'functest.opnfv_tests.openstack.snaps.connection_check' + class: 'ConnectionCheck' + + - name: api_check criteria: 'status == "PASS"' blocking: true |