summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Faulkner <jay@jvf.cc>2014-08-26 11:53:44 -0700
committerJay Faulkner <jay@jvf.cc>2014-08-26 11:53:44 -0700
commit2e6aa38e0986ee67f5e93cd6bb7b32c52f8207e6 (patch)
treea9f65814d6adbb7b37c18e22f3df7f02fb806c96
parentb3216b56f3fea3259c290faa2dd496215b625904 (diff)
downloadvyos-cloud-init-2e6aa38e0986ee67f5e93cd6bb7b32c52f8207e6.tar.gz
vyos-cloud-init-2e6aa38e0986ee67f5e93cd6bb7b32c52f8207e6.zip
Remove pylint
pylint was not passing, and per smoser in IRC pylint can/should be removed.
-rw-r--r--HACKING.rst4
-rw-r--r--Makefile3
-rw-r--r--test-requirements.txt1
3 files changed, 2 insertions, 6 deletions
diff --git a/HACKING.rst b/HACKING.rst
index 66bf7c90..6bfe4b4d 100644
--- a/HACKING.rst
+++ b/HACKING.rst
@@ -19,9 +19,9 @@ To get changes into cloud-init, the process to follow is:
- ``bzr commit``
-* Check pylint and pep8 and test, and address any issues:
+* Check pep8 and test, and address any issues:
- - ``make test pylint pep8``
+ - ``make test pep8``
* Push to launchpad to a personal branch:
diff --git a/Makefile b/Makefile
index c8b75e73..d96e6488 100644
--- a/Makefile
+++ b/Makefile
@@ -19,9 +19,6 @@ all: test check_version
pep8:
@$(CWD)/tools/run-pep8 $(PY_FILES)
-pylint:
- @$(CWD)/tools/run-pylint $(PY_FILES)
-
pyflakes:
pyflakes $(PY_FILES)
diff --git a/test-requirements.txt b/test-requirements.txt
index 47d45d47..2edb8066 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -3,4 +3,3 @@ mocker
nose
pep8==1.5.7
pyflakes
-pylint