2022-09-12 15:02:35 +00:00
|
|
|
# ref: https://docs.gitlab.com/ee/ci/README.html
|
|
|
|
|
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
|
|
|
|
.tests:
|
|
|
|
stage: test
|
|
|
|
script:
|
|
|
|
- pip install -r requirements.txt
|
|
|
|
- pip install -r test-requirements.txt
|
2022-09-13 14:00:03 +00:00
|
|
|
- pytest --cov=garage_admin_sdk
|
2022-09-12 15:02:35 +00:00
|
|
|
|
|
|
|
test-3.6:
|
|
|
|
extends: .tests
|
|
|
|
image: python:3.6-alpine
|
|
|
|
test-3.7:
|
|
|
|
extends: .tests
|
|
|
|
image: python:3.7-alpine
|
|
|
|
test-3.8:
|
|
|
|
extends: .tests
|
|
|
|
image: python:3.8-alpine
|
|
|
|
test-3.9:
|
|
|
|
extends: .tests
|
|
|
|
image: python:3.9-alpine
|