Use Zuul v3 feature

Move from project-config the job definitions for python-redfish with
the .zuul.yaml config file (except publish-to-pypi) and adapt templates
to new v3 naming style, thanks to Andreas Jaeger

Change-Id: I96d47f8b754864053cb46e0c89e123cac6f571cf
This commit is contained in:
Bruno Cornec 2019-08-27 20:06:08 +02:00
parent 4ae087f94b
commit 72bb353f00
3 changed files with 17 additions and 3 deletions

13
.zuul.yaml Normal file
View File

@ -0,0 +1,13 @@
---
- project:
templates:
- openstack-python-jobs
- openstack-python35-jobs
- openstack-python36-jobs
- openstack-python37-jobs
check:
jobs:
- openstack-tox-pep8
gate:
jobs:
- openstack-tox-pep8

View File

@ -5,7 +5,8 @@
pbr>=0.8
tortilla>=0.4.1
Jinja2>=2.7.3
Sphinx>=1.2.3
Sphinx>=1.2.3,<2.0; python_version < '3'
Sphinx>=1.2.3; python_version >= '3'
docopt>=0.6.2
simplejson>=3.8.1
requests>=2.9.1

View File

@ -1,6 +1,6 @@
[tox]
minversion = 1.6
envlist = py36,py35,py27,docs
minversion = 2.0
envlist = py36,py35,docs
skipsdist = True
[testenv]