CI-Build-Fix: Move the connection check to smoke 39/25839/1
authorhelenyao <yaohelan@huawei.com>
Tue, 13 Dec 2016 10:18:45 +0000 (05:18 -0500)
committerhelenyao <yaohelan@huawei.com>
Tue, 13 Dec 2016 10:23:42 +0000 (05:23 -0500)
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>
functest/ci/testcases.yaml

index d57ac30..6a11a03 100755 (executable)
@@ -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
@@ -124,6 +106,24 @@ tiers:
                     installer: ''
                     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"'