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
black.yml 410 B
black:
    image: python:latest
    stage: quality
    script:
        - python --version  # Debug
        - python -m venv venv --upgrade-deps || python -m venv venv
        - source venv/bin/activate
        - pip install black
        - black . --check --diff --quiet
    only:
        changes:
            - src/**/*.py
            - tests/**/*.py
            - .gitlab-ci.yml
            - pyproject.toml