forked from loafle/openapi-generator-original
* Copy the current Python generator into a "pydantic v1" generator This generator will be deprecated over time and the normal generator will focus on Pydantic v2. * add missing doc
32 lines
709 B
YAML
32 lines
709 B
YAML
# 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
|
|
pytest-3.10:
|
|
extends: .pytest
|
|
image: python:3.10-alpine
|
|
pytest-3.11:
|
|
extends: .pytest
|
|
image: python:3.11-alpine
|