You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
588 B
25 lines
588 B
# NOTE: This file is auto generated by OpenAPI Generator.
|
|
# URL: https://openapi-generator.tech
|
|
#
|
|
# ref: https://docs.gitlab.com/ee/ci/README.html
|
|
# ref: https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Python.gitlab-ci.yml
|
|
|
|
stages:
|
|
- test
|
|
|
|
.pytest:
|
|
stage: test
|
|
script:
|
|
- pip install -r requirements.txt
|
|
- pip install -r test-requirements.txt
|
|
- pytest --cov=openapi_client
|
|
|
|
pytest-3.7:
|
|
extends: .pytest
|
|
image: python:3.7-alpine
|
|
pytest-3.8:
|
|
extends: .pytest
|
|
image: python:3.8-alpine
|
|
pytest-3.9:
|
|
extends: .pytest
|
|
image: python:3.9-alpine
|