Skip to content
Snippets Groups Projects

Add CI to run doctests

Merged Lukas Kluft requested to merge add-ci into main
3 files
+ 19
0
Compare changes
  • Side-by-side
  • Inline
Files
3
.gitlab-ci.yml 0 → 100644
+ 13
0
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
Loading