Allow linkcheck to fail

This commit is contained in:
wiredfool 2016-04-19 07:29:33 -07:00
parent 7938202a1b
commit c5a801b836

View File

@ -28,7 +28,9 @@ doc:
doccheck: doccheck:
$(MAKE) -C docs html $(MAKE) -C docs html
$(MAKE) -C docs linkcheck # Don't make our test rely on the links in the docs being up every single build.
# We don't control them. But do check, and update them to the target of their redirectes.
$(MAKE) -C docs linkcheck || true
docserve: docserve:
cd docs/_build/html && python -mSimpleHTTPServer 2> /dev/null& cd docs/_build/html && python -mSimpleHTTPServer 2> /dev/null&