This repository has been archived on 2025-01-23. You can view files and clone it, but cannot push or open issues or pull requests.
traefik-certmanager/kubernetes/.gitlab-ci.yml

34 lines
649 B
YAML
Raw Normal View History

# ref: https://docs.gitlab.com/ee/ci/README.html
stages:
- test
.nosetest:
stage: test
script:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
- pytest --cov=client
nosetest-2.7:
extends: .nosetest
image: python:3.13-alpine
nosetest-3.3:
extends: .nosetest
image: python:3.13-alpine
nosetest-3.4:
extends: .nosetest
image: python:3.13-alpine
nosetest-3.5:
extends: .nosetest
image: python:3.13-alpine
nosetest-3.6:
extends: .nosetest
image: python:3.13-alpine
nosetest-3.7:
extends: .nosetest
image: python:3.13-alpine
nosetest-3.8:
extends: .nosetest
image: python:3.13-alpine