Add pep8/pylint publishers.

Change-Id: I6a2efe9599594dd40217800b551cf4678063c023
Reviewed-on: https://review.openstack.org/11502
Reviewed-by: Clark Boylan <clark.boylan@gmail.com>
Reviewed-by: Yun Mao <yunmao@gmail.com>
Approved: James E. Blair <corvus@inaugust.com>
Tested-by: Jenkins
This commit is contained in:
James E. Blair 2012-08-16 13:35:12 -07:00 committed by Jenkins
parent 3fc347a536
commit 029b604f16

View File

@ -47,6 +47,11 @@
builders:
- shell: "set -o pipefail ; tox -v -epep8 | tee pep8.txt ; set +o pipefail"
- builder:
name: pylint
builders:
- shell: "set -o pipefail ; tox -v -epylint | tee pylint.txt ; set +o pipefail"
- builder:
name: pyflakes
builders:
@ -114,3 +119,23 @@
site: '{site}'
source: '{warfile}'
target: '{target}'
- publisher:
name: pep8
publishers:
- violations:
pep8:
min: 0
max: 1
unstable: 1
pattern: '**/pep8.txt'
- publisher:
name: pylint
publishers:
- violations:
pylint:
min: 0
max: 1
unstable: 1
pattern: '**/pylint.txt'