Stop cloning doctor and domino
authorCédric Ollivier <cedric.ollivier@orange.com>
Sat, 2 Sep 2017 12:08:08 +0000 (14:08 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Sat, 2 Sep 2017 12:36:31 +0000 (14:36 +0200)
Both testcases are disabled and the next reviews allow installing
them via packages:
  - Add doctor-test package [1]
  - Add domino package [2]

[1] https://gerrit.opnfv.org/gerrit/#/c/38177/
[2] https://gerrit.opnfv.org/gerrit/#/c/40911/

Change-Id: I03fc89c26f527e33417c17a8b1ab47d1c69c9a89
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
docker/Dockerfile
docker/features/Dockerfile

index 774c00a..51d28b9 100644 (file)
@@ -92,8 +92,6 @@ RUN wget -q -O- https://git.openstack.org/cgit/openstack/requirements/plain/uppe
     rm thirdparty-requirements.txt upper-constraints.txt
 
 # OPNFV repositories
-RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/domino /src/domino
-RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/doctor ${REPOS_DIR}/doctor
 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/fds /src/fds
 
 # other repositories
index af2a1eb..e1214c1 100644 (file)
@@ -2,7 +2,6 @@ FROM opnfv/functest-core
 
 ARG BRANCH=master
 ARG OPENSTACK_TAG=stable/ocata
-ARG DOMINO_TAG=master
 
 COPY thirdparty-requirements.txt thirdparty-requirements.txt
 RUN apk --no-cache add --update nodejs nodejs-npm && \
@@ -15,8 +14,7 @@ RUN apk --no-cache add --update nodejs nodejs-npm && \
         -rthirdparty-requirements.txt && \
     npm -g install npm@latest && \
     (cd /src/promise/source && npm install) && \
-    git clone --depth 1 -b $DOMINO_TAG https://gerrit.opnfv.org/gerrit/domino /src/domino && \
-    rm -r thirdparty-requirements.txt /src/domino/.git && \
+    rm -r thirdparty-requirements.txt && \
     apk del .build-deps
 COPY testcases.yaml /usr/lib/python2.7/site-packages/functest/ci/testcases.yaml
 CMD ["bash","-c","prepare_env start && run_tests -t all"]