Unleash more matrix attempts
continuous-integration/drone/push Build encountered an error Details

This commit is contained in:
Luke Murphy 2020-04-11 23:48:52 +02:00
parent fc33fd7a78
commit 3e03c91cb3
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 12 additions and 12 deletions

View File

@ -5,28 +5,28 @@ name: default
matrix: matrix:
include: include:
- PY: 3.6 - IMAGE: 3.6-stretch
TOXENV: py3 TOXENV: py36
- PY: 3.7 - IMAGE: 3.7-stretch
TOXENV: py37 TOXENV: py37
- PY: 3.8 - IMAGE: 3.8-buster
TOXENV: py38 TOXENV: py38
- PY: 3.8 - IMAGE: 3.8-buster
TOXENV: lint TOXENV: lint
- PY: 3.8 - IMAGE: 3.8-buster
TOXENV: sort TOXENV: sort
- PY: 3.8 - IMAGE: 3.8-buster
TOXENV: format TOXENV: format
- PY: 3.8 - IMAGE: 3.8-buster
TOXENV: type TOXENV: type
- PY: 3.8 - IMAGE: 3.8-buster
TOXENV: docs TOXENV: docs
- PY: 3.8 - IMAGE: 3.8-buster
TOXENV: metadata-release TOXENV: metadata-release
steps: steps:
- name: Run tox testing - name: Run tox testing
image: python image: "python:${IMAGE}"
commands: commands:
- pip install tox==3.14.6 - pip install tox==3.14.6
- tox -v - tox -e "${TOXENV}"