diff --git a/.ci/unit_tests.sh b/.ci/unit_tests.sh new file mode 100644 index 0000000000000000000000000000000000000000..384b352f558b6cfd875be95043194e4712e2a5fe --- /dev/null +++ b/.ci/unit_tests.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + +conda create \ + -c https://fsl.fmrib.ox.ac.uk/fsldownloads/fslconda/public/ \ + -c conda-forge \ + -p ./test.env \ + "python=${PYTHON_VERSION}" \ + pytest \ + coverage \ + pytest-cov + +source activate ./test.env + +pip install --no-deps -e . + +pytest diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..7df784efd57a9522a46712e4dc278de5ebb0fcd5 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,20 @@ +stages: + - test + + +.test: &test_template + stage: test + image: continuumio/miniconda3 + tags: + - docker + except: + - tags + - merge_requests + script: + - bash ./.ci/unit_tests.sh + + +test:3.11: + variables: + PYTHON_VERSION : "3.11" + <<: *test_template