Skip to content

Commit 72bcef2

Browse files
committed
Remove another unnecessary wrapper
1 parent 3a56f26 commit 72bcef2

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

Makefile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,6 @@ ci-test-storage:
4343
install-docs:
4444
pip install -Ur docs-requirements.txt
4545

46-
docs:
47-
cd docs && make html
48-
sphinx-build -W -b linkcheck ./docs/ ./docs/_build/linkcheck/
49-
5046
release-deb:
5147
sh scripts/release-deb.sh debian jessie
5248
sh scripts/release-deb.sh debian stretch

docs/contributing.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,10 @@ virtualenv_ and run this inside of it::
8989

9090
Then you can run::
9191

92-
pytest # The normal testsuite
92+
pytest # The normal testsuite
9393
pre-commit run --all # Run all linters (which also run via pre-commit)
94-
make docs # Build the HTML docs, output is at docs/_build/html/
94+
make -C docs html # Build the HTML docs, output is at docs/_build/html/
95+
make -C docs linkcheck # Check docs for any broken links
9596

9697
The ``Makefile`` has a lot of options that allow you to control which tests are
9798
run, and which servers are tested. Take a look at its code where they are all

0 commit comments

Comments
 (0)