diff options
author | Vincent Mahe <v.mahe@orange.com> | 2020-05-25 18:32:58 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-02-09 14:25:48 +0100 |
commit | dd65cb02f0a0773a4b56781c66ddcccfc658568f (patch) | |
tree | a5dfdfad913a9f7c525cf2119c16357f41465e09 /docker/core | |
parent | 0636bc2c0941d44025d663f8bca425966093013b (diff) |
Add MTS driver
It creates a new container xtesting-mts to avoid increase core
container size.
Signed-off-by: Vincent Mahe <v.mahe@orange.com>
Change-Id: I59544023e1235747e140a442815778a133bf6acf
(cherry picked from commit 32eb7687bf7b8440aa87805480789ef61ae65ec9)
Diffstat (limited to 'docker/core')
-rw-r--r-- | docker/core/Dockerfile | 20 | ||||
-rw-r--r-- | docker/core/testcases.yaml | 80 |
2 files changed, 100 insertions, 0 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile new file mode 100644 index 00000000..999049c3 --- /dev/null +++ b/docker/core/Dockerfile @@ -0,0 +1,20 @@ +FROM alpine:3.11 + +ARG BRANCH=stable/kali +ARG OPENSTACK_TAG=stable/ussuri + +RUN apk --no-cache add --update python3 bash git mailcap libxml2 libxslt && \ + apk --no-cache add --virtual .build-deps --update \ + python3-dev build-base libxml2-dev libxslt-dev && \ + git init /src/functest-xtesting && \ + (cd /src/functest-xtesting && \ + git fetch --tags https://gerrit.opnfv.org/gerrit/functest-xtesting $BRANCH && \ + git checkout FETCH_HEAD) && \ + pip3 install --no-cache-dir --src /src \ + -chttps://opendev.org/openstack/requirements/raw/branch/$OPENSTACK_TAG/upper-constraints.txt \ + -chttps://git.opnfv.org/functest-xtesting/plain/upper-constraints.txt?h=$BRANCH \ + /src/functest-xtesting && \ + rm -r /src/functest-xtesting && \ + apk del .build-deps +COPY testcases.yaml /usr/lib/python3.8/site-packages/xtesting/ci/testcases.yaml +CMD ["run_tests", "-t", "all"] diff --git a/docker/core/testcases.yaml b/docker/core/testcases.yaml new file mode 100644 index 00000000..f549e0c4 --- /dev/null +++ b/docker/core/testcases.yaml @@ -0,0 +1,80 @@ +--- +tiers: + - + name: samples + description: '' + testcases: + - + case_name: first + project_name: xtesting + criteria: 100 + blocking: true + clean_flag: false + description: '' + run: + name: 'first' + + - + case_name: second + project_name: xtesting + criteria: 100 + blocking: true + clean_flag: false + description: '' + run: + name: 'second' + + - + case_name: third + project_name: xtesting + criteria: 100 + blocking: true + clean_flag: false + description: '' + run: + name: 'bashfeature' + args: + cmd: 'echo -n Hello World; exit 0' + + - + case_name: fourth + project_name: xtesting + criteria: 100 + blocking: true + clean_flag: false + description: '' + run: + name: 'unit' + args: + name: 'xtesting.samples.fourth' + + - + case_name: fifth + project_name: xtesting + criteria: 100 + blocking: true + clean_flag: false + description: '' + run: + name: 'robotframework' + args: + suites: + - /usr/lib/python3.8/site-packages/xtesting/samples/HelloWorld.robot + variable: + - 'var01:foo' + - 'var02:bar' + + - + case_name: sixth + project_name: xtesting + criteria: 100 + blocking: false + clean_flag: false + description: '' + run: + name: 'behaveframework' + args: + suites: + - /usr/lib/python3.8/site-packages/xtesting/samples/features/ + tags: + - foo |