Lint: call tools inside venv using make's PYTHON (#2408)
Co-authored-by: Brett Cannon <brett@python.org>
This commit is contained in:
parent
93619f3ec6
commit
00a5a0be46
43
Makefile
43
Makefile
|
@ -1,36 +1,45 @@
|
||||||
# Builds PEP files to HTML using sphinx
|
# Builds PEP files to HTML using sphinx
|
||||||
|
|
||||||
PYTHON=python3
|
PYTHON=python3
|
||||||
VENV_DIR=venv
|
VENVDIR=.venv
|
||||||
JOBS=8
|
JOBS=8
|
||||||
RENDER_COMMAND=$(PYTHON) build.py -j $(JOBS)
|
RENDER_COMMAND=$(VENVDIR)/bin/python3 build.py -j $(JOBS)
|
||||||
|
|
||||||
render:
|
render: venv
|
||||||
$(RENDER_COMMAND)
|
$(RENDER_COMMAND)
|
||||||
|
|
||||||
pages: rss
|
pages: venv rss
|
||||||
$(RENDER_COMMAND) --build-dirs
|
$(RENDER_COMMAND) --build-dirs
|
||||||
|
|
||||||
fail-warning:
|
fail-warning: venv
|
||||||
$(RENDER_COMMAND) --fail-on-warning
|
$(RENDER_COMMAND) --fail-on-warning
|
||||||
|
|
||||||
check-links:
|
check-links: venv
|
||||||
$(RENDER_COMMAND) --check-links
|
$(RENDER_COMMAND) --check-links
|
||||||
|
|
||||||
rss:
|
rss: venv
|
||||||
$(PYTHON) generate_rss.py
|
$(VENVDIR)/bin/python3 generate_rss.py
|
||||||
|
|
||||||
clean:
|
clean: clean-venv
|
||||||
-rm -rf build
|
-rm -rf build
|
||||||
|
|
||||||
|
clean-venv:
|
||||||
|
rm -rf $(VENVDIR)
|
||||||
|
|
||||||
venv:
|
venv:
|
||||||
$(PYTHON) -m venv $(VENV_DIR)
|
@if [ -d $(VENVDIR) ] ; then \
|
||||||
./$(VENV_DIR)/bin/python -m pip install -r requirements.txt
|
echo "venv already exists."; \
|
||||||
|
echo "To recreate it, remove it first with \`make clean-venv'."; \
|
||||||
|
else \
|
||||||
|
$(PYTHON) -m venv $(VENVDIR); \
|
||||||
|
$(VENVDIR)/bin/python3 -m pip install -r requirements.txt; \
|
||||||
|
echo "The venv has been created in the $(VENVDIR) directory"; \
|
||||||
|
fi
|
||||||
|
|
||||||
lint:
|
lint: venv
|
||||||
pre-commit --version > /dev/null || $(PYTHON) -m pip install pre-commit
|
$(VENVDIR)/bin/python3 -m pre_commit --version > /dev/null || $(VENVDIR)/bin/python3 -m pip install pre-commit
|
||||||
pre-commit run --all-files
|
$(VENVDIR)/bin/python3 -m pre_commit run --all-files
|
||||||
|
|
||||||
spellcheck:
|
spellcheck: venv
|
||||||
pre-commit --version > /dev/null || $(PYTHON) -m pip install pre-commit
|
$(VENVDIR)/bin/python3 -m pre_commit --version > /dev/null || $(VENVDIR)/bin/python3 -m pip install pre-commit
|
||||||
pre-commit run --all-files --hook-stage manual codespell
|
$(VENVDIR)/bin/python3 -m pre_commit run --all-files --hook-stage manual codespell
|
||||||
|
|
Loading…
Reference in New Issue