0395f676ab
Removes redundant requirements and adds a new job which runs 'tox -epip-check-reqs' in order to avoid having redundant dependencies specified or missing some. Change-Id: I5ca35922213cfbe4c2b4b49388bffcc0b8fc6a96
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
- project:
|
|
templates:
|
|
- nodejs6-jobs
|
|
- publish-openstack-docs-pti
|
|
- openstack-cover-jobs
|
|
- openstack-python3-xena-jobs
|
|
check:
|
|
jobs:
|
|
- refstack-tox-functional:
|
|
nodeset: openstack-single-node-bionic
|
|
- refstack-tox-pip-check-reqs
|
|
gate:
|
|
jobs:
|
|
- refstack-tox-functional:
|
|
nodeset: openstack-single-node-bionic
|
|
|
|
- job:
|
|
name: refstack-tox-functional
|
|
parent: openstack-tox
|
|
description: |
|
|
Run functional tests for an OpenStack Python project under cPython 3.
|
|
Uses tox with the ``functional`` environment.
|
|
irrelevant-files:
|
|
- ^.*\.rst$
|
|
- ^doc/.*$
|
|
- ^releasenotes/.*$
|
|
vars:
|
|
tox_envlist: functional
|
|
|
|
- job:
|
|
name: refstack-tox-pip-check-reqs
|
|
parent: openstack-tox
|
|
description: |
|
|
Run pip-extra-reqs and pip-missing-reqs to find any missing or redundant
|
|
dependencies. Uses tox with the ``pip-check-reqs`` environment.
|
|
irrelevant-files:
|
|
- ^.*\.rst$
|
|
- ^doc/.*$
|
|
- ^releasenotes/.*$
|
|
vars:
|
|
tox_envlist: pip-check-reqs
|