
Python 3.6 is installed by default in Ubuntu 18.04 LTS. According to Python2 Deprecation Timeline [1] and Python3-first Goal [2], we should have py36 testenv ready for it. This change adds a non-voting job for checking the 3.6 upper-constraints, and a voting job for py36. Once we're confident we have all the bits in place for 36-uc checking we can promote that job to voting. [1] https://governance.openstack.org/tc/resolutions/20180529-python2-deprecation-timeline.html [2] https://review.openstack.org/#/c/575933 Change-Id: Ia06c1ab217e80902adb607a3bc6063aae66f48bf
69 lines
1.6 KiB
YAML
69 lines
1.6 KiB
YAML
- job:
|
|
name: requirements-tox-babel
|
|
parent: openstack-tox
|
|
description: |
|
|
Run test for requirements project.
|
|
|
|
Uses tox with the ``babel`` environment.
|
|
files:
|
|
- ^babel-test/.*
|
|
- ^tox.ini
|
|
- ^upper-constraints.txt
|
|
vars:
|
|
tox_envlist: babel
|
|
|
|
- job:
|
|
name: requirements-tox-py27-check-uc
|
|
parent: openstack-tox
|
|
description: |
|
|
Run test for requirements project.
|
|
|
|
Uses tox with the ``py27-check-uc`` environment.
|
|
files: ^upper-constraints.*txt$
|
|
vars:
|
|
tox_envlist: py27-check-uc
|
|
|
|
- job:
|
|
name: requirements-tox-py35-check-uc
|
|
parent: openstack-tox
|
|
description: |
|
|
Run test for requirements project.
|
|
|
|
Uses tox with the ``py35-check-uc`` environment.
|
|
files: ^upper-constraints.*txt$
|
|
vars:
|
|
tox_envlist: py35-check-uc
|
|
|
|
- job:
|
|
name: requirements-tox-py36-check-uc
|
|
parent: openstack-tox-py36
|
|
description: |
|
|
Run test for requirements project.
|
|
|
|
Uses tox with the ``py36-check-uc`` environment.
|
|
files: ^upper-constraints.*txt$
|
|
vars:
|
|
tox_envlist: py36-check-uc
|
|
- job:
|
|
name: requirements-tox-validate-projects
|
|
parent: openstack-tox
|
|
files:
|
|
- ^projects.txt
|
|
description: |
|
|
Run test for requirements project.
|
|
|
|
Uses tox with the ``validate-projects`` environment.
|
|
vars:
|
|
tox_envlist: validate-projects
|
|
|
|
- job:
|
|
name: requirements-tox-bindep
|
|
parent: openstack-tox
|
|
description: |
|
|
Run test for requirements project.
|
|
|
|
Uses tox with the ``bindep`` environment.
|
|
files: ^bindep.txt$
|
|
vars:
|
|
tox_envlist: bindep
|