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

FIX: Pipeline

parent 04a41185
No related branches found
No related tags found
2 merge requests!178FIX: #96 Better error output for crawl.py script.,!171sav/spss converter
Pipeline #51069 passed with warnings
...@@ -10,7 +10,11 @@ RUN apt-get update && \ ...@@ -10,7 +10,11 @@ RUN apt-get update && \
python3-sphinx \ python3-sphinx \
tox \ tox \
-y -y
RUN pip3 install pylint recommonmark sphinx-rtd-theme RUN pip3 install \
pylint \
recommonmark \
sphinx-rtd-theme \
;
COPY .docker/wait-for-it.sh /wait-for-it.sh COPY .docker/wait-for-it.sh /wait-for-it.sh
ARG PYLIB ARG PYLIB
ADD https://gitlab.indiscale.com/api/v4/projects/97/repository/commits/${PYLIB} \ ADD https://gitlab.indiscale.com/api/v4/projects/97/repository/commits/${PYLIB} \
......
...@@ -118,7 +118,8 @@ unittest_py3.9: ...@@ -118,7 +118,8 @@ unittest_py3.9:
stage: test stage: test
image: $CI_REGISTRY_IMAGE image: $CI_REGISTRY_IMAGE
script: script:
- tox - python3 -c "import pyreadstat; print(pyreadstat.__version__)"
- tox
unittest_py3.8: unittest_py3.8:
tags: [cached-dind] tags: [cached-dind]
......
...@@ -214,6 +214,8 @@ intersphinx_mapping = { ...@@ -214,6 +214,8 @@ intersphinx_mapping = {
# TODO Which options do we want? # TODO Which options do we want?
autodoc_default_options = { autodoc_default_options = {
'members': None, 'members': True,
'undoc-members': None, 'undoc-members': True,
'member-order': 'bysource',
'special-member': ["__init__"],
} }
...@@ -3,10 +3,9 @@ envlist = py38, py39, py310, py311, py312, py313 ...@@ -3,10 +3,9 @@ envlist = py38, py39, py310, py311, py312, py313
skip_missing_interpreters = true skip_missing_interpreters = true
[testenv] [testenv]
deps = . deps = .[h5_crawler,spss]
pytest pytest
pytest-cov pytest-cov
h5py
# TODO: Make this f-branch sensitive # TODO: Make this f-branch sensitive
git+https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git@dev git+https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git@dev
git+https://gitlab.indiscale.com/caosdb/src/caosdb-advanced-user-tools.git@dev git+https://gitlab.indiscale.com/caosdb/src/caosdb-advanced-user-tools.git@dev
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment