58d622019d
This job was a legacy job that attempted to verify each project could be independently installed after all global-requirements had been installed. This job is no longer necessary since we have much better coverage with requirements-check and other jobs that make sure the requirements are compatible. It is also a legacy zuulv2 job, uses the long deprecated devstack-gate, and runs with Python 2.7. For historical reference, this was added originally to PBR back in 2013 [0] and moved to requirements in 2014 [1]. [0]378261a8cb
[1]8e073738db
Change-Id: I29abcba929995f9307c392110160d889a29b47c3 Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
59 lines
1.3 KiB
YAML
59 lines
1.3 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-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
|
|
|