From a8c6c72360de82e88fee4b98995df0c5c6e51c90 Mon Sep 17 00:00:00 2001 From: Lucas Alvares Gomes Date: Wed, 3 Oct 2018 13:16:21 +0100 Subject: [PATCH] Fix validations for neutron projects The validation check is looking for a "publish-to-pypi-neutron-python3" job to be set in the project-config repository for the neutron projects but, that job doesn't seem to exist. This patch is changing the validation script to look for a "publish-to-pypi-python3" job instead. Change-Id: I9d2c6c82e78f798b12a8cadd633f6b247127133b --- openstack_releases/project_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack_releases/project_config.py b/openstack_releases/project_config.py index 8e71d00031..84aff942be 100644 --- a/openstack_releases/project_config.py +++ b/openstack_releases/project_config.py @@ -147,7 +147,7 @@ _RELEASE_JOBS_FOR_TYPE = { ], 'neutron': [ 'publish-to-pypi-neutron', - 'publish-to-pypi-neutron-python3', + 'publish-to-pypi-python3', ], 'horizon': [ 'publish-to-pypi-horizon',