Skip to content
Snippets Groups Projects
Commit cc6f28dd authored by Raphael Sturgis's avatar Raphael Sturgis
Browse files

Update .gitlab-ci.yml file

parent d270b31b
Branches
No related tags found
1 merge request!1Develop
This commit is part of merge request !1. Comments created here will be created in the context of that merge request.
before_script:
- python -V # Print out python version for debugging
- pip install virtualenv
- virtualenv venv
- source venv/bin/activate
# run the test suite # run the test suite
tests: tests:
stage: test stage: test
image: registry.gitlab.lis-lab.fr:5005/raphael.sturgis/skais
only: only:
- main - main
- develop - develop
tags: tags:
- docker - docker
script: script:
- pip3 install -r requirements.txt - pip install -r requirements.txt
- pip3 install --no-deps . - pip install --no-deps .
- pytest --junitxml=report.xml - pytest --junitxml=report.xml
artifacts: artifacts:
when: always when: always
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment