diff options
author | 2019-11-08 18:01:13 +0100 | |
---|---|---|
committer | 2019-11-25 20:06:55 +0000 | |
commit | 983e15f3d8278b7f233af668e4013706cd046373 (patch) | |
tree | cfcfcd055c840799549011c5d7fd0321ff5a4857 /test/xtesting/robot/Dockerfile | |
parent | e99c81bd877cbf5f1be54931d3c0ab1d39221ab1 (diff) |
Clean xtesting repo from integration
all xtesting activities should be in a dedicated respository
Issue-ID: INT-1366
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Change-Id: Iec8fbf0b24eb18496a49eccb79af9fb85d29dc1f
Diffstat (limited to 'test/xtesting/robot/Dockerfile')
-rw-r--r-- | test/xtesting/robot/Dockerfile | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/test/xtesting/robot/Dockerfile b/test/xtesting/robot/Dockerfile deleted file mode 100644 index 5d8d26ea2..000000000 --- a/test/xtesting/robot/Dockerfile +++ /dev/null @@ -1,26 +0,0 @@ -FROM opnfv/xtesting - -ARG OPENSTACK_TAG=stable/pike -ARG OPNFV_TAG=master -ARG ONAP_TAG=master - -ENV PYTHONPATH $PYTHONPATH:/src/testing-utils/eteutils - -COPY thirdparty-requirements.txt thirdparty-requirements.txt -RUN apk --no-cache add --virtual .build-deps --update \ - python-dev build-base linux-headers libffi-dev \ - openssl-dev libjpeg-turbo-dev && \ - git clone --depth 1 https://git.onap.org/testsuite -b $ONAP_TAG /var/opt/OpenECOMP_ETE && \ - git clone --depth 1 https://git.onap.org/testsuite/properties -b $ONAP_TAG /share/config && \ - git clone --depth 1 https://git.onap.org/testsuite/python-testing-utils -b $ONAP_TAG /src/testing-utils && \ - pip install \ - -chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG \ - -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$OPNFV_TAG \ - -rthirdparty-requirements.txt \ - -e /src/testing-utils && \ - rm -r thirdparty-requirements.txt /src/testing-utils/.git /share/config/.git \ - /var/opt/OpenECOMP_ETE/.git && \ - apk del .build-deps - -COPY testcases.yaml /usr/lib/python2.7/site-packages/xtesting/ci/testcases.yaml -CMD ["run_tests", "-t", "all"] |