diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2018-09-14 03:27:13 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-09-14 03:27:13 +0000 |
commit | fcea85fd2903499e6138335cfe8a9366a34b0086 (patch) | |
tree | bdf7b73345ec2432f5b749fee1a9d71306f79c06 /docker/features/Dockerfile | |
parent | e2ef3a3fcf062e65bb22e7f59f258fd8ea786522 (diff) | |
parent | abea5c1c65e1b381cfa2f138ac94c9b344f1289a (diff) |
Merge "Disable OPNFV Features"
Diffstat (limited to 'docker/features/Dockerfile')
-rw-r--r-- | docker/features/Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docker/features/Dockerfile b/docker/features/Dockerfile index d8b1ae98..ea3bf6e3 100644 --- a/docker/features/Dockerfile +++ b/docker/features/Dockerfile @@ -3,6 +3,7 @@ FROM opnfv/functest-kubernetes-core ARG OPENSTACK_TAG=master ARG OPNFV_TAG=master +COPY thirdparty-requirements.txt thirdparty-requirements.txt RUN apk --no-cache add --update make py-pip bash git go \ grep rsync linux-headers musl-dev findutils \ libffi libssl1.0 libjpeg-turbo && \ @@ -11,7 +12,8 @@ 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 clover && \ + -rthirdparty-requirements.txt && \ + rm -f thirdparty-requirements.txt && \ apk del .build-deps COPY testcases.yaml /usr/lib/python2.7/site-packages/xtesting/ci/testcases.yaml CMD ["run_tests", "-t", "all"] |