Merge "Ensure python interpreter is installed for tox-py3X"

This commit is contained in:
Zuul 2020-01-06 17:22:03 +00:00 committed by Gerrit Code Review
commit e5472ffa5a
3 changed files with 22 additions and 2 deletions

View File

@ -7,6 +7,7 @@ Python Jobs
.. zuul:autojob:: tox-py35 .. zuul:autojob:: tox-py35
.. zuul:autojob:: tox-py36 .. zuul:autojob:: tox-py36
.. zuul:autojob:: tox-py37 .. zuul:autojob:: tox-py37
.. zuul:autojob:: tox-py38
.. zuul:autojob:: tox-docs .. zuul:autojob:: tox-docs
.. zuul:autojob:: tox-linters .. zuul:autojob:: tox-linters
.. zuul:autojob:: tox-molecule .. zuul:autojob:: tox-molecule

View File

@ -7,12 +7,16 @@
jobs: jobs:
- zuul-tox-docs - zuul-tox-docs
- tox-py27 - tox-py27
- tox-py35 - tox-py35:
nodeset: ubuntu-xenial
- tox-py37
gate: gate:
jobs: jobs:
- zuul-tox-docs - zuul-tox-docs
- tox-py27 - tox-py27
- tox-py35 - tox-py35:
nodeset: ubuntu-xenial
- tox-py37
promote: promote:
jobs: jobs:
- zuul-promote-docs - zuul-promote-docs

View File

@ -66,6 +66,7 @@
Uses tox with the ``py34`` environment. Uses tox with the ``py34`` environment.
vars: vars:
tox_envlist: py34 tox_envlist: py34
python_version: 3.4
- job: - job:
name: tox-py35 name: tox-py35
@ -76,6 +77,7 @@
Uses tox with the ``py35`` environment. Uses tox with the ``py35`` environment.
vars: vars:
tox_envlist: py35 tox_envlist: py35
python_version: 3.5
- job: - job:
name: tox-py36 name: tox-py36
@ -86,6 +88,7 @@
Uses tox with the ``py36`` environment. Uses tox with the ``py36`` environment.
vars: vars:
tox_envlist: py36 tox_envlist: py36
python_version: 3.6
- job: - job:
name: tox-py37 name: tox-py37
@ -96,6 +99,18 @@
Uses tox with the ``py37`` environment. Uses tox with the ``py37`` environment.
vars: vars:
tox_envlist: py37 tox_envlist: py37
python_version: 3.7
- job:
name: tox-py38
parent: tox
description: |
Run unit tests for a Python project under cPython version 3.8.
Uses tox with the ``py38`` environment.
vars:
tox_envlist: py38
python_version: 3.8
- job: - job:
name: tox-docs name: tox-docs