diff options
author | Joshua Powers <josh.powers@canonical.com> | 2017-01-30 11:24:45 -0700 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2017-02-06 21:33:18 -0600 |
commit | 3bcb72c593f13915a81272778809dd8e71e2c7b7 (patch) | |
tree | 40c09b2953e04416775431571a731ccb421d4585 /Makefile | |
parent | 5f14a0b1ca3079e4ab43d615840866a4b7d8df6a (diff) | |
download | vyos-cloud-init-3bcb72c593f13915a81272778809dd8e71e2c7b7.tar.gz vyos-cloud-init-3bcb72c593f13915a81272778809dd8e71e2c7b7.zip |
Remove style checking during build and add latest style checks to tox
- make check will no longer run the style checks, that way package builds
wont fail on a style difference in versions of the style tools in
that distro.
- created style-check make file target to continue to run pep8 and pyflakes
- added tox envs 'tip-pycodestyle' and 'tip-pyflakes' to run latest style
checking. These are not enabled by default run of tox.
LP: #1652329
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -34,7 +34,9 @@ CODE_VERSION=$(shell $(PYVER) -c "from cloudinit import version; print(version.v all: check -check: check_version pep8 $(pyflakes) test $(yaml) +check: check_version test $(yaml) + +style-check: pep8 $(pyflakes) pep8: @$(CWD)/tools/run-pep8 @@ -84,3 +86,4 @@ deb: .PHONY: test pyflakes pyflakes3 clean pep8 rpm deb yaml check_version .PHONY: pip-test-requirements pip-requirements clean_pyc unittest unittest3 +.PHONY: style-check |