Skip to content
Snippets Groups Projects
Verified Commit 658e35da authored by Daniel Hornung's avatar Daniel Hornung
Browse files

WIP: Pipeline requirements.

parent 9e2a5101
No related branches found
No related tags found
2 merge requests!39Release 0.4.0,!38MAINT: Linting tests run through now.
Pipeline #21168 failed
...@@ -25,7 +25,7 @@ ADD https://gitlab.com/api/v4/projects/13656973/repository/branches/dev \ ...@@ -25,7 +25,7 @@ ADD https://gitlab.com/api/v4/projects/13656973/repository/branches/dev \
RUN git clone https://gitlab.com/caosdb/caosdb-pylib.git && \ RUN git clone https://gitlab.com/caosdb/caosdb-pylib.git && \
cd caosdb-pylib && git checkout dev && pip3 install . cd caosdb-pylib && git checkout dev && pip3 install .
# At least recommonmark 0.6 required. # At least recommonmark 0.6 required.
RUN pip3 install recommonmark sphinx-rtd-theme RUN pip3 install html2text pycodestyle pylint recommonmark sphinx-rtd-theme
COPY . /git COPY . /git
RUN rm -r /git/.git \ RUN rm -r /git/.git \
&& mv /git/.docker/pycaosdb.ini /git/integrationtests && mv /git/.docker/pycaosdb.ini /git/integrationtests
......
...@@ -109,7 +109,7 @@ style: ...@@ -109,7 +109,7 @@ style:
tags: [docker] tags: [docker]
stage: style stage: style
image: $CI_REGISTRY_IMAGE image: $CI_REGISTRY_IMAGE
needs: [] needs: [build-testenv]
script: script:
- make style - make style
allow_failure: true allow_failure: true
...@@ -118,7 +118,7 @@ linting: ...@@ -118,7 +118,7 @@ linting:
tags: [docker] tags: [docker]
stage: style stage: style
image: $CI_REGISTRY_IMAGE image: $CI_REGISTRY_IMAGE
needs: [] needs: [build-testenv]
script: script:
- make lint - make lint
allow_failure: true allow_failure: true
...@@ -127,7 +127,7 @@ unittest: ...@@ -127,7 +127,7 @@ unittest:
tags: [docker] tags: [docker]
stage: unittest stage: unittest
image: $CI_REGISTRY_IMAGE image: $CI_REGISTRY_IMAGE
needs: [] needs: [build-testenv]
script: script:
- tox - tox
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment