Browse code

Remove old Makefile targets.

- `pep8` - There is no need to give it more prominent placement than other sanity tests.
- `pyflakes` - The project only makes use of `pylint` and `pycodestyle`. Having the target implies that it should work.
- `loc` - Not used. Easily run manually if needed.

Matt Clay authored on 2019/08/14 09:22:38
Showing 1 changed files
... ...
@@ -12,7 +12,6 @@
12 12
 #   make deb ------------------ produce a DEB
13 13
 #   make docs ----------------- rebuild the manpages (results are checked in)
14 14
 #   make tests ---------------- run the tests (see https://docs.ansible.com/ansible/devel/dev_guide/testing_units.html for requirements)
15
-#   make pyflakes, make pep8 -- source code checks
16 15
 
17 16
 ########################################################
18 17
 # variable section
... ...
@@ -172,18 +171,6 @@ authors:
172 172
 %.1: %.1.rst lib/ansible/release.py
173 173
 	$(ASCII2MAN)
174 174
 
175
-.PHONY: loc
176
-loc:
177
-	sloccount lib library bin
178
-
179
-.PHONY: pep8
180
-pep8:
181
-	$(ANSIBLE_TEST) sanity --test pep8 --python $(PYTHON_VERSION) $(TEST_FLAGS)
182
-
183
-.PHONY: pyflakes
184
-pyflakes:
185
-	pyflakes lib/ansible/*.py lib/ansible/*/*.py bin/*
186
-
187 175
 .PHONY: clean
188 176
 clean:
189 177
 	@echo "Cleaning up distutils stuff"