Skip to content
Snippets Groups Projects
.gitlab-ci.yml 394 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/skais
Raphael Sturgis's avatar
Raphael Sturgis committed
    only:
        - main
        - develop
    tags:
        - docker
    script:
        - pip3 install -r requirements.txt
        - pip3 install --no-deps .
        - pytest --junitxml=report.xml
    artifacts:
        when: always
        reports:
                junit: report.xml