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
No related branches found
No related tags found
1 merge request!1Develop
before_script:
- python -V # Print out python version for debugging
- pip install virtualenv
- virtualenv venv
- source venv/bin/activate
# run the test suite
tests:
stage: test
image: registry.gitlab.lis-lab.fr:5005/raphael.sturgis/skais
only:
- main
- develop
tags:
- docker
script:
- pip3 install -r requirements.txt
- pip3 install --no-deps .
- pip install -r requirements.txt
- pip install --no-deps .
- pytest --junitxml=report.xml
artifacts:
when: always
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment