Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects

Ci fix

Open Hamza DIOUANE requested to merge ci_fix into main
+ 13
1
@@ -30,6 +30,7 @@ variables:
########################### STAGES ################################
stages:
- code quality
- tests
- build package & push
########################### LINTING ################################
@@ -38,7 +39,18 @@ stages:
before_script:
- pip install -r requirements/quality.txt
script:
- ruff check --output-format=gitlab .
- ruff check --output-format=gitlab src/fake_session_maker/fsm.py
only:
variables:
- $CI_PIPELINE_SOURCE == "push"
########################### TESTING ################################
"Tests":
stage: tests
before_script:
- pip install -r requirements/quality.txt
script:
- pytest
only:
variables:
- $CI_PIPELINE_SOURCE == "push"
Loading