mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-17 00:21:19 +00:00
* Removes future from python-exp v3 sample * Removes future from python-exp v2 sample * Deletes future from remaining python-exp files * Removes six from python-exp templates * Removes six from python-exp samples * Removes mock from python-exp * Python-exp switched to py3 * Removes python 2.7 for python-exp ci testing * Requires python>=3.3 for python-exp * Reverts unnecessary changes to two templates
31 lines
589 B
YAML
31 lines
589 B
YAML
# 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=dynamic_servers
|
|
|
|
nosetest-3.3:
|
|
extends: .nosetest
|
|
image: python:3.3-alpine
|
|
nosetest-3.4:
|
|
extends: .nosetest
|
|
image: python:3.4-alpine
|
|
nosetest-3.5:
|
|
extends: .nosetest
|
|
image: python:3.5-alpine
|
|
nosetest-3.6:
|
|
extends: .nosetest
|
|
image: python:3.6-alpine
|
|
nosetest-3.7:
|
|
extends: .nosetest
|
|
image: python:3.7-alpine
|
|
nosetest-3.8:
|
|
extends: .nosetest
|
|
image: python:3.8-alpine
|