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.

24 lines
588 B

2 years ago
  1. # NOTE: This file is auto generated by OpenAPI Generator.
  2. # URL: https://openapi-generator.tech
  3. #
  4. # ref: https://docs.gitlab.com/ee/ci/README.html
  5. # ref: https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Python.gitlab-ci.yml
  6. stages:
  7. - test
  8. .pytest:
  9. stage: test
  10. script:
  11. - pip install -r requirements.txt
  12. - pip install -r test-requirements.txt
  13. - pytest --cov=openapi_client
  14. pytest-3.7:
  15. extends: .pytest
  16. image: python:3.7-alpine
  17. pytest-3.8:
  18. extends: .pytest
  19. image: python:3.8-alpine
  20. pytest-3.9:
  21. extends: .pytest
  22. image: python:3.9-alpine