Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Hugo van Kemenade <[email protected]>
  • Loading branch information
AA-Turner and hugovk authored Dec 31, 2025
commit fef4655dd68276240555acfb96817f8f48d4cd06
10 changes: 5 additions & 5 deletions Doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -284,17 +284,17 @@ _ensure-package: venv
$(VENVDIR)/bin/python3 -m pip install $(PACKAGE); \
fi

.PHONY: _ensure-prek
_ensure-prek:
$(MAKE) _ensure-package PACKAGE=prek
.PHONY: _ensure-pre-commit
_ensure-pre-commit:
$(MAKE) _ensure-package PACKAGE=pre-commit

.PHONY: _ensure-sphinx-autobuild
_ensure-sphinx-autobuild:
$(MAKE) _ensure-package PACKAGE=sphinx-autobuild

.PHONY: check
check: _ensure-prek
$(VENVDIR)/bin/python3 -m prek run --all-files
check: _ensure-pre-commit
$(VENVDIR)/bin/python3 -m pre-commit run --all-files
Comment thread
AA-Turner marked this conversation as resolved.
Outdated

.PHONY: serve
serve:
Expand Down
Loading