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
+ 10
10
@@ -29,20 +29,20 @@ variables:
########################### STAGES ################################
stages:
- code quality
# - code quality
- tests
- build package & push
########################### LINTING ################################
"Linter":
stage: code quality
before_script:
- pip install -r requirements/quality.txt
script:
- ruff check --output-format=gitlab src/fake_session_maker/fsm.py
only:
variables:
- $CI_PIPELINE_SOURCE == "push"
#"Linter":
# stage: code quality
# before_script:
# - pip install -r requirements/quality.txt
# script:
# - ruff check --output-format=gitlab src/fake_session_maker/fsm.py
# only:
# variables:
# - $CI_PIPELINE_SOURCE == "push"
########################### TESTING ################################
"Tests":
Loading