diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 46a836bd6543f2319a379834b32d595d25f813b8..9ec1727db301affd8e984df78abbb78a2b16ffaa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -158,7 +158,19 @@ unittest_py3.13: tags: [cached-dind] stage: test image: python:3.13-rc - script: *python_test_script + script: + # TODO: Replace by '*python_test_script' as soon as 3.13 has been officially released. + - apt update && apt install -y cargo + # install dependencies + - pip install pytest pytest-cov + # TODO: Use f-branch logic here + - pip install git+https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git@dev + - pip install git+https://gitlab.indiscale.com/caosdb/src/caosdb-advanced-user-tools.git@dev + - pip install .[h5-crawler] + # actual test + - caosdb-crawler --help + - pytest --cov=caosdb -vv ./unittests + inttest: tags: [docker]