Fix 'make partialcheck-test-suite'

Python pep8 should not be run as part of partialcheck
Javascript should also only invoke SWIG during partialcheck
This commit is contained in:
William S Fulton 2016-03-18 18:56:55 +00:00
commit 7aa5f07dfd
3 changed files with 6 additions and 6 deletions

View file

@ -390,7 +390,7 @@ PY2TO3 = 2to3 `2to3 -l | grep -v -E "Available|import$$" | awk '{print "-f "$$0}
python_run: $(PYSCRIPT)
ifneq (,$(PEP8))
$(PEP8) $(PEP8_FLAGS) $(PYSCRIPT)
$(COMPILETOOL) $(PEP8) $(PEP8_FLAGS) $(PYSCRIPT)
endif
env PYTHONPATH=$$PWD $(RUNTOOL) $(PYTHON) $(PYSCRIPT) $(RUNPIPE)