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
pytest.yml 407 B
Newer Older
Dorian Turba's avatar
Dorian Turba committed
pytest:
    image: python:latest
    stage: code_quality
    script:
        - python --version  # Debug
        - python -m venv venv --upgrade-deps || python -m venv venv  # upgrade-deps is not supported before 3.9
        - source venv/bin/activate
        - pip install pytest
        - pytest
    only:
        changes:
            - ./**/*.py
            - .gitlab-ci.yml
            - pyproject.toml