Skip to content
Snippets Groups Projects
Commit b1b7f203 authored by WITTMANN Gregory's avatar WITTMANN Gregory
Browse files

modif pipline

parent f9d31311
No related branches found
No related tags found
No related merge requests found
Pipeline #16652 failed
stages: stages:
- lint - lint
- test - test
- deploy
variables:
IMAGE_NAME: imagesphere # Remplacez par le nom réel de votre image Docker
lint: lint:
stage: lint stage: lint
script: script:
- apt-get update -qy - apk update
- apt-get install -y python3-pip - apk add python3 py3-pip
- pip3 install flake8 - pip3 install flake8
- flake8 sphère.py - flake8 sphère.py
test: test:
stage: test stage: test
script: script:
- apt-get update -qy - apk update
- apt-get install -y python3-pip - apk add python3 py3-pip
- pip3 install -r requirements.txt - pip3 install -r requirements.txt
- python3 -m pytest test_sphère.py - python3 -m pytest test_sphère.py
deploy:
stage: deploy
only:
- master
script:
- echo echo "Les étapes de déploiement seront définies ultérieurement."
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment