Skip to content

Commit 052d1cd

Browse files
committed
Replace pep8 target
1 parent f7ab20f commit 052d1cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

resources/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ help:
1313
@echo " venv_flex to build the working virtual environment for the"
1414
@echo " flexible environment application, and to install"
1515
@echo " requirements for deployment."
16-
@echo " pep8 to run pep8 on the code and tests folders."
16+
@echo " pycodestyle to run pycodestyle on the code and tests folders."
1717
@echo " pyflakes to run pyflakes on the code and tests folders."
1818
@echo " clean_venv to remove the created virtualenv folders."
1919
@echo " clean_cache to remove the downloaded files/pip cache folder."
@@ -61,8 +61,8 @@ appenginesdk: virtualenv_std directories
6161
directories:
6262
mkdir -p $(CURDIR)/build $(CURDIR)/cache
6363

64-
# A useful target for PEP-8'ing your source tree. Do a pep8 for everything under `src` and `tests`.
65-
pep8:
64+
# A useful target for running pycodestyle your source tree. Do a pep8 for everything under `src` and `tests`.
65+
pycodestyle:
6666
find $(CURDIR)/src/ -name *.py -exec $(CURDIR)/$(VENV)/bin/pycodestyle {} \;
6767
find $(CURDIR)/src/tests/ -name *.py -exec $(CURDIR)/$(VENV)/bin/pycodestyle {} \;
6868

0 commit comments

Comments
 (0)