run yamllint on deliverable files during validation
Change-Id: Ic60597c0fc2a0f181f713866bbc59a41cff69e86 Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
parent
d236774f17
commit
7a16d1ef99
@ -1,5 +1,6 @@
|
||||
---
|
||||
launchpad: automaton
|
||||
send-announcements-to: openstack-dev@lists.openstack.org
|
||||
releases:
|
||||
- version: 0.2.0
|
||||
projects:
|
||||
|
@ -1,5 +1,6 @@
|
||||
---
|
||||
launchpad: debtcollector
|
||||
send-announcements-to: openstack-dev@lists.openstack.org
|
||||
releases:
|
||||
- version: 0.5.0
|
||||
projects:
|
||||
|
@ -1,6 +1,7 @@
|
||||
---
|
||||
launchpad: ironic-inspector
|
||||
release-notes: http://docs.openstack.org/releasenotes/ironic-inspector/liberty.html
|
||||
release-notes: >
|
||||
http://docs.openstack.org/releasenotes/ironic-inspector/liberty.html
|
||||
send-announcements-to: openstack-announce@lists.openstack.org
|
||||
releases:
|
||||
- version: 2.0.0
|
||||
|
@ -1,5 +1,6 @@
|
||||
---
|
||||
launchpad: os-brick
|
||||
send-announcements-to: openstack-dev@lists.openstack.org
|
||||
releases:
|
||||
- version: 0.2.0
|
||||
projects:
|
||||
@ -35,4 +36,3 @@ releases:
|
||||
hash: 5ac54d4e0c89daba1be80702ee4060a538c08754
|
||||
highlights: >
|
||||
Log message fixes that prevent messages from being displayed at all.
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
---
|
||||
launchpad: oslo.config
|
||||
send-announcements-to: openstack-dev@lists.openstack.org
|
||||
releases:
|
||||
- version: 1.10.0
|
||||
projects:
|
||||
|
@ -1,5 +1,6 @@
|
||||
---
|
||||
launchpad: oslo.db
|
||||
send-announcements-to: openstack-dev@lists.openstack.org
|
||||
releases:
|
||||
- version: 1.8.0
|
||||
projects:
|
||||
|
@ -1,5 +1,6 @@
|
||||
---
|
||||
launchpad: oslo.versionedobjects
|
||||
send-announcements-to: openstack-dev@lists.openstack.org
|
||||
releases:
|
||||
- version: 0.2.0
|
||||
projects:
|
||||
|
@ -1,5 +1,6 @@
|
||||
---
|
||||
launchpad: oslosphinx
|
||||
send-announcements-to: openstack-dev@lists.openstack.org
|
||||
releases:
|
||||
- version: 3.0.0
|
||||
projects:
|
||||
|
@ -1,5 +1,6 @@
|
||||
---
|
||||
launchpad: stevedore
|
||||
send-announcements-to: openstack-dev@lists.openstack.org
|
||||
releases:
|
||||
- version: 1.7.0
|
||||
projects:
|
||||
|
@ -1,6 +1,7 @@
|
||||
---
|
||||
launchpad: ironic-inspector
|
||||
release-notes: http://docs.openstack.org/releasenotes/ironic-inspector/mitaka.html
|
||||
release-notes: >
|
||||
http://docs.openstack.org/releasenotes/ironic-inspector/mitaka.html
|
||||
send-announcements-to: openstack-announce@lists.openstack.org
|
||||
releases:
|
||||
- version: 2.3.0
|
||||
|
@ -8,7 +8,6 @@ releases:
|
||||
hash: e398f9c5ff3e860fccae1a8257451a60b02506d1
|
||||
- repo: openstack/mistral-dashboard
|
||||
hash: 977e0aeafc37e20228b8beb0c560135e14076176
|
||||
releases:
|
||||
- version: 2.0.0.0b2
|
||||
projects:
|
||||
- repo: openstack/mistral
|
||||
|
@ -52,9 +52,12 @@ releases:
|
||||
* Group oslo_messaging_notifications added to options.
|
||||
* ZeroMQ driver use_pub_sub by default for fanout messaging.
|
||||
* ZeroMQ driver zmq_target_expire option configures Redis records TTL.
|
||||
* Kombu driver reply and fanout queues now expire instead of auto-delete.
|
||||
* Kombu driver rabbit_qos_prefetch_count option to configure messages prefetch.
|
||||
* Kombu driver rabbit_interval_max option to configure connection retries.
|
||||
* Kombu driver reply and fanout queues now expire instead of
|
||||
auto-delete.
|
||||
* Kombu driver rabbit_qos_prefetch_count option to configure messages
|
||||
prefetch.
|
||||
* Kombu driver rabbit_interval_max option to configure connection
|
||||
retries.
|
||||
- version: 4.2.0
|
||||
projects:
|
||||
- repo: openstack/oslo.messaging
|
||||
|
@ -29,7 +29,6 @@ releases:
|
||||
projects:
|
||||
- repo: openstack/oslo.privsep
|
||||
hash: 693213039f455a7085eee09f5d7b16d4a24eaabf
|
||||
|
||||
- version: 1.3.0
|
||||
projects:
|
||||
- repo: openstack/oslo.privsep
|
||||
|
@ -1,3 +1,4 @@
|
||||
---
|
||||
launchpad: python-ironicclient
|
||||
send-announcements-to: openstack-announce@lists.openstack.org
|
||||
include-pypi-link: yes
|
||||
|
6
tox.ini
6
tox.ini
@ -16,7 +16,11 @@ setenv =
|
||||
basepython = python2.7
|
||||
|
||||
[testenv:validate]
|
||||
commands = validate-request {posargs}
|
||||
deps =
|
||||
yamllint>=0.5.2
|
||||
commands =
|
||||
yamllint -f parsable -c {toxinidir}/yamllint.yml deliverables
|
||||
validate-request {posargs}
|
||||
|
||||
[testenv:list-changes]
|
||||
setenv =
|
||||
|
9
yamllint.yml
Normal file
9
yamllint.yml
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
extends: default
|
||||
|
||||
rules:
|
||||
# 80 chars should be enough, but don't fail if a line is longer
|
||||
line-length:
|
||||
max: 80
|
||||
level: warning
|
||||
allow-non-breakable-words: true
|
Loading…
x
Reference in New Issue
Block a user