mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-02-18 12:30:58 +03:00
This will run the linkcheck and build the html docs, turning any warnings into errors. Also changed the theme to sphinx-doc and added version to be displayed in the docs.
17 lines
480 B
Python
17 lines
480 B
Python
import pytest
|
|
import subprocess
|
|
|
|
def test_linkcheck(tmpdir):
|
|
doctrees = tmpdir.join("doctrees")
|
|
htmldir = tmpdir.join("html")
|
|
subprocess.check_call(
|
|
["sphinx-build", "-W", "-blinkcheck",
|
|
"-d", str(doctrees), ".", str(htmldir)])
|
|
|
|
def test_build_docs(tmpdir):
|
|
doctrees = tmpdir.join("doctrees")
|
|
htmldir = tmpdir.join("html")
|
|
subprocess.check_call([
|
|
"sphinx-build", "-W", "-bhtml",
|
|
"-d", str(doctrees), ".", str(htmldir)])
|