Skip to content

Commit 4dd3b93

Browse files
authored
Merge pull request #111 from dhellmann/separate-linkcheck-tox
Move link check out of main doc build job
2 parents 4fd5c43 + 6313fd3 commit 4dd3b93

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

docs/source/install.rst

+4-3
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,10 @@ or::
5454
export MSYS_HOME=C:\msys\1.0
5555
source /usr/local/bin/virtualenvwrapper.sh
5656

57-
Depending on your MSYS setup, you may need to install the MSYS mktemp binary
58-
(``https://sourceforge.net/projects/mingw/files/MSYS/``) in the
59-
``MSYS_HOME/bin`` folder.
57+
Depending on your MSYS setup, you may need to install the `MSYS mktemp
58+
binary`_ in the ``MSYS_HOME/bin`` folder.
59+
60+
.. _MSYS mktemp binary: https://sourceforge.net/projects/mingw/files/MSYS/
6061

6162
PowerShell
6263
----------

tox.ini

+5
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ deps =
3838
-r{toxinidir}/docs/requirements.txt
3939
commands =
4040
sphinx-build -W -j auto -b html -d docs/build/doctrees docs/source docs/build/html
41+
42+
[testenv:linkcheck]
43+
deps =
44+
-r{toxinidir}/docs/requirements.txt
45+
commands =
4146
sphinx-build -W -j auto -b linkcheck -d docs/build/doctrees docs/source docs/build/linkcheck
4247

4348
[testenv:pkglint]

0 commit comments

Comments
 (0)