File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 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
6161directories :
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
You can’t perform that action at this time.
0 commit comments