Skip to content

Instantly share code, notes, and snippets.

@magopian
Created November 16, 2012 10:40
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save magopian/4086323 to your computer and use it in GitHub Desktop.
Save magopian/4086323 to your computer and use it in GitHub Desktop.
git pre-commit hook for sphinx documentation
#!/bin/sh
#
# This pre-commit hook tests that the documentation builds correctly.
# It can be disabled by using the "-n" option with "git commit".
#
# See http://git-scm.com/book/en/Customizing-Git-Git-Hooks for details.
#
# This pre-commit hook requires that you have the "###PROJECT###" project on your python
# path, in order for the DJANGO_SETTINGS_MODULE=###PROJECT###.settings to work.
# This is needed to build the apidoc.
#
# To easily put the "###PROJECT###" project on your python path, use the same virtualenv
# and in the project folder, execute "add2virtualenv ." once.
echo "Checking documentation build..."
res=$(DJANGO_SETTINGS_MODULE=###PROJECT###.settings bin/sphinx-build -q -E -w errors.log -b html -d build/doctrees source build/html 2> /dev/null)
if test -s errors.log; then # if errors.log exists and isn't empty, then there's some errors
echo "[error] Blocking commit, found errors while building documentation:"
cat errors.log
rm -f errors.log
exit 1
else
echo "[success] Documentation built without error."
fi
rm -f errors.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment