diff options
Diffstat (limited to 'docker/features')
-rw-r--r-- | docker/features/Dockerfile | 2 | ||||
-rw-r--r-- | docker/features/testcases.yaml | 24 |
2 files changed, 24 insertions, 2 deletions
diff --git a/docker/features/Dockerfile b/docker/features/Dockerfile index 03e285c0..e1c82e4c 100644 --- a/docker/features/Dockerfile +++ b/docker/features/Dockerfile @@ -11,7 +11,7 @@ RUN apk --no-cache add --update make py-pip bash git go \ pip install \ -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$OPNFV_TAG \ -chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG \ - stor4nfv-tests && \ + stor4nfv-tests clover && \ apk del .build-deps COPY testcases.yaml /usr/lib/python2.7/site-packages/xtesting/ci/testcases.yaml CMD ["run_tests", "-t", "all"] diff --git a/docker/features/testcases.yaml b/docker/features/testcases.yaml index 7ea601dc..08d43662 100644 --- a/docker/features/testcases.yaml +++ b/docker/features/testcases.yaml @@ -2,7 +2,7 @@ tiers: - name: stor4nfv - order: 3 + order: 1 ci_loop: '(daily)|(weekly)' description: >- Test suite from Stor4NFV project. @@ -21,3 +21,25 @@ tiers: run: module: 'stor4nfv_tests.stor4nfv_k8s' class: 'K8sStor4nfvTest' + + - + name: clover + order: 2 + ci_loop: '(daily)|(weekly)' + description: >- + Test suite from Clover project. + testcases: + - + case_name: clover_k8s + project_name: clover + criteria: 100 + blocking: false + description: >- + This tests are necessary demonstrate features + of K8s+Istio+Clover deployment. + dependencies: + installer: 'container4nfv' + scenario: 'clover' + run: + module: 'clover.functest.clover_k8s' + class: 'K8sCloverTest' |