From 113a5eae306b8ea7ba98c5148c1293ecca4270cc Mon Sep 17 00:00:00 2001 From: Tony Breeds Date: Thu, 26 Jul 2018 12:06:11 +1000 Subject: [PATCH] Add non-voting job to check all candidates I suggest we leave this as non-voting for this PTL election manually verify the results. Once we're confident we can upgrade it to voting. Change-Id: I01ad9c76ab68e8282acb4bcc66a2eb7c57596171 --- .zuul.d/jobs.yaml | 11 +++++++++++ .zuul.d/project.yaml | 5 +++++ tox.ini | 3 +++ 3 files changed, 19 insertions(+) create mode 100644 .zuul.d/jobs.yaml create mode 100644 .zuul.d/project.yaml diff --git a/.zuul.d/jobs.yaml b/.zuul.d/jobs.yaml new file mode 100644 index 00000000..d88c37d0 --- /dev/null +++ b/.zuul.d/jobs.yaml @@ -0,0 +1,11 @@ +- job: + name: election-tox-ci-checks + parent: openstack-tox + description: | + Run the ci-checks tox environment + + This environment runs the easy, for a machine, to validate election + checks. + vars: + tox_envlist: ci-checks + diff --git a/.zuul.d/project.yaml b/.zuul.d/project.yaml new file mode 100644 index 00000000..eada8f7c --- /dev/null +++ b/.zuul.d/project.yaml @@ -0,0 +1,5 @@ +- project: + check: + jobs: + - election-tox-ci-checks: + voting: false diff --git a/tox.ini b/tox.ini index 23455bcc..16e942cf 100644 --- a/tox.ini +++ b/tox.ini @@ -32,5 +32,8 @@ commands = {posargs} [testenv:docs] commands = python setup.py build_sphinx +[testenv:ci-checks] +commands = ci-check-all-candidate-files + [flake8] exclude=.tox,doc/source/conf.py