Skip to content
Snippets Groups Projects
.gitlab-ci.yml 421 B
Newer Older
Raphael Sturgis's avatar
Raphael Sturgis committed
# run the test suite
tests:
    stage: test
    image: registry.gitlab.lis-lab.fr:5005/raphael.sturgis/phd_qarma_searoutes
Raphael Sturgis's avatar
Raphael Sturgis committed
    only:
        - main
        - develop
    tags:
        - docker
    script:
        - pip install -r requirements.txt
        - pip install --no-deps .
        - pytest --junitxml=report.xml --cov=src -vvv
Raphael Sturgis's avatar
Raphael Sturgis committed
    artifacts:
        when: always
        reports:
                junit: report.xml