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
.gitlab-ci.yml 428 B
Newer Older
Karine Bauch's avatar
Karine Bauch committed
stages:
    - build
    - test
    - deploy

include:
    -   remote: 'https://gitlab.com/r2devops/hub/-/raw/template_release@0.2.1/jobs/template_release/template_release.yml'
    -   project: 'beebryte/cicd/pytest'
        ref: '$CI_COMMIT_BRANCH$CI_COMMIT_TAG'
        file: 'pytest.yml'

pytest:
    variables:
        PROJECT_PATH: "tests/passing_test"

Karine Bauch's avatar
Karine Bauch committed
pytest_fail:
    variables:
        PROJECT_PATH: "tests/failing_test"