From d6ff1b0c4906be0997945e9f6b385f0d51ee9168 Mon Sep 17 00:00:00 2001 From: Charles Short Date: Tue, 16 Feb 2021 07:42:46 -0500 Subject: [PATCH] Add gates for tsconfig Add gates for py36, py27, flake8, and pylint. Story: 2006796 Task: 42774 Signed-off-by: Charles Short Change-Id: Icca03a8b8c46c39a88f5aa76acea891ea87a34e7 --- .zuul.yaml | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/.zuul.yaml b/.zuul.yaml index 6b1f01e7d1..b6577d1f56 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -16,6 +16,10 @@ - controllerconfig-tox-py36 - controllerconfig-tox-flake8 - controllerconfig-tox-pylint + - tsconfig-tox-pylint + - tsconfig-tox-py27 + - tsconfig-tox-py36 + - tsconfig-tox-flake8 - cgtsclient-tox-py27 - cgtsclient-tox-py36 - cgtsclient-tox-pep8 @@ -32,6 +36,10 @@ - controllerconfig-tox-py36 - controllerconfig-tox-flake8 - controllerconfig-tox-pylint + - config-tox-pylint + - config-tox-py27 + - config-tox-py36 + - config-tox-flake8 - cgtsclient-tox-py27 - cgtsclient-tox-py36 - cgtsclient-tox-pep8 @@ -155,6 +163,51 @@ tox_envlist: pylint tox_extra_args: -c controllerconfig/controllerconfig/tox.ini +- job: + name: config-tox-pylint + parent: tox + nodeset: ubuntu-xenial + description: Run pylint tests for tsconfig + files: + - tsconfig/* + vars: + tox_envlist: pylint + tox_extra_args: -c tsconfig/tsconfig/tox.ini + +- job: + name: config-tox-py27 + parent: tox + nodeset: ubuntu-xenial + description: Run py27 tests for tsconfig + files: + - tsconfig/* + vars: + tox_envlist: py27 + tox_extra_args: -c tsconfig/tsconfig/tox.ini + +- job: + name: config-tox-py36 + parent: tox + description: Run py36 tests for tsconfig + nodeset: ubuntu-bionic + files: + - tsconfig/* + vars: + tox_envlist: py36 + tox_extra_args: -c tsconfig/tsconfig/tox.ini + +- job: + name: config-tox-flake8 + parent: tox + description: Run flake8 tests for tsconfig + nodeset: ubuntu-bionic + files: + - tsconfig/* + vars: + tox_envlist: flake8 + tox_extra_args: -c tsconfig/tsconfig/tox.ini + + - job: name: flock-devstack-config parent: flock-devstack-base