Add documentation to jobs

Change-Id: Ie2b130af6ce5bb336d829fc2ec9458effc81f844
Depends-On: Ida98e767db561dd77090bc5710026349342d58b2
This commit is contained in:
James E. Blair 2017-06-08 16:48:22 -07:00
parent 0ba6b45125
commit aaffa55dd1

View File

@ -1,21 +1,39 @@
- job:
name: unittests
parent: base
description: |
Perform setup common to all unit test jobs.
This performs basic host and general project setup tasks common
to all types of unit test jobs.
pre-run: unittests/pre
- job:
name: unittests-python
parent: unittests
description: |
Perform setup common to python unit test jobs.
This performs basic host and general project setup tasks common
to all python unit test jobs.
run: unittests/python
- job:
name: python27
parent: unittests-python
description: |
Run unit tests for a Python project under cPython version 2.7.
Uses tox with the "py27" environment.
vars:
zuul_python_version: 27
- job:
name: python35
parent: unittests-python
description: |
Run unit tests for a Python project under cPython version 3.5.
Uses tox with the "py35" environment.
vars:
zuul_python_version: 35