Add other py versions for testing

This commit is contained in:
Luke Murphy 2020-04-27 13:00:46 +02:00
parent 3528f12b2b
commit 2112fc77d4
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
2 changed files with 23 additions and 1 deletions

View File

@ -18,6 +18,26 @@ steps:
- pip install tox==3.14.6 - pip install tox==3.14.6
- tox -e packaging - tox -e packaging
---
kind: pipeline
name: py36
steps:
- name: tox -e py36
image: python:3.6-buster
commands:
- pip install tox==3.14.6
- tox -e py36
---
kind: pipeline
name: py37
steps:
- name: tox -e py37
image: python:3.7-buster
commands:
- pip install tox==3.14.6
- tox -e py37
--- ---
kind: pipeline kind: pipeline
name: py38 name: py38
@ -56,4 +76,6 @@ steps:
depends_on: depends_on:
- linters - linters
- packaging - packaging
- py36
- py37
- py38 - py38

View File

@ -4,7 +4,7 @@ minversion = 3.14.0
envlist = envlist =
linters linters
packaging packaging
py{38} py{36,37,38}
devel devel
skipsdist = True skipsdist = True