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:
parent
3fc347a536
commit
029b604f16
@ -47,6 +47,11 @@
|
|||||||
builders:
|
builders:
|
||||||
- shell: "set -o pipefail ; tox -v -epep8 | tee pep8.txt ; set +o pipefail"
|
- 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:
|
- builder:
|
||||||
name: pyflakes
|
name: pyflakes
|
||||||
builders:
|
builders:
|
||||||
@ -114,3 +119,23 @@
|
|||||||
site: '{site}'
|
site: '{site}'
|
||||||
source: '{warfile}'
|
source: '{warfile}'
|
||||||
target: '{target}'
|
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'
|
||||||
|
Loading…
Reference in New Issue
Block a user