diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..0f3de15516a0423edd85f7e7c32891041f092e02 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ +pytest: + tags: + - conda + stage: test + before_script: + - python3 -m pip install -r requirements.txt + - python3 -m pip install pytest + script: + - pytest --doctest-modules --junitxml=report.xml + artifacts: + when: always + reports: + junit: report.xml