1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
|
# This file is part of Hypothesis, which may be found at
# https://github.com/HypothesisWorks/hypothesis/
#
# Copyright the Hypothesis Authors.
# Individual contributors are listed in AUTHORS.rst and the git log.
#
# This Source Code Form is subject to the terms of the Mozilla Public License,
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
# obtain one at https://mozilla.org/MPL/2.0/.
import datetime
import re
import sys
import types
from pathlib import Path
from docutils import nodes
from sphinx.util.docutils import SphinxRole
root = Path(__file__).parent.parent
sys.path.append(str(root / "src"))
sys.path.append(str(Path(__file__).parent / "_ext"))
#needs_sphinx = re.search(
# r"sphinx==([0-9\.]+)", root.joinpath("../requirements/tools.txt").read_text()
#).group(1)
default_role = "py:obj"
nitpicky = True
autodoc_member_order = "bysource"
autodoc_typehints = "none"
maximum_signature_line_length = 60 # either one line, or one param per line
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.extlinks",
"sphinx.ext.viewcode",
"sphinx.ext.intersphinx",
"sphinx.ext.napoleon",
# loading this extension overrides the default -b linkcheck behavior with
# custom url ignore logic. see hypothesis_linkcheck.py for details.
"hypothesis_linkcheck",
"hypothesis_redirects",
]
templates_path = ["_templates"]
# config for hypothesis_redirects
redirects = {
"details": "reference/index.html",
"data": "reference/strategies.html",
"database": "reference/api.html#database",
# "stateful": "reference/api.html#stateful-tests",
"reproducing": "reference/api.html",
"ghostwriter": "reference/integrations.html#ghostwriter",
"django": "reference/strategies.html#django",
"numpy": "reference/strategies.html#numpy",
"observability": "reference/integrations.html#observability",
"settings": "reference/api.html#settings",
"endorsements": "usage.html#testimonials",
# TODO enable when we actually rename them
# "extras": "extensions.html",
"supported": "compatibility.html",
"changes": "changelog.html",
"strategies": "extensions.html",
# these pages were removed without replacement
"support": "index.html",
"manifesto": "index.html",
"examples": "index.html",
}
redirect_html_template_file = "redirect.html.template"
source_suffix = ".rst"
# The master toctree document.
master_doc = "index"
# General information about the project.
project = "Hypothesis"
author = "the Hypothesis team"
copyright = f"2013-{datetime.date.today().year}, {author}"
_d = {}
_version_file = root.joinpath("src", "hypothesis", "version.py")
exec(_version_file.read_text(encoding="utf-8"), _d)
version = _d["__version__"]
release = _d["__version__"]
# custom role for version syntaxes.
# :v:`6.131.0` = [v6.131.0](changelog.html#v6.13.0)
# :version:`6.131.0` = [version 6.131.0](changelog.html#v6.13.0)
class VersionRole(SphinxRole):
def __init__(self, prefix):
self.prefix = prefix
def run(self):
node = nodes.reference(
"",
f"{self.prefix}{self.text}",
refuri=f"changelog.html#v{self.text.replace('.', '-')}",
)
return [node], []
def setup(app):
if root.joinpath("RELEASE.rst").is_file():
app.tags.add("has_release_file")
# Workaround for partial-initialization problem when autodoc imports libcst
try:
import libcst
import hypothesis.extra.codemods
assert libcst
assert hypothesis.extra.codemods
except ModuleNotFoundError:
pass
# patch in mock array_api namespace so we can autodoc it
from hypothesis.extra.array_api import (
RELEASED_VERSIONS,
make_strategies_namespace,
mock_xp,
)
mod = types.ModuleType("xps")
mod.__dict__.update(
make_strategies_namespace(mock_xp, api_version=RELEASED_VERSIONS[-1]).__dict__
)
assert "xps" not in sys.modules
sys.modules["xps"] = mod
def process_signature(app, what, name, obj, options, signature, return_annotation):
# manually override an ugly signature from .. autofunction. Alternative we
# could manually document with `.. function:: run_conformance_test(...)`,
# but that's less likely to stay up to date.
if (
name
== "hypothesis.internal.conjecture.provider_conformance.run_conformance_test"
):
# so we know if this ever becomes obsolete
assert "_realize_objects" in signature
signature = re.sub(
r"_realize_objects=.*",
"_realize_objects=st.from_type(object) | st.from_type(type).flatmap(st.from_type))",
signature,
)
return signature, return_annotation
app.connect("autodoc-process-signature", process_signature)
app.add_role("v", VersionRole(prefix="v"))
app.add_role("version", VersionRole(prefix="version "))
language = "en"
exclude_patterns = ["_build", "prolog.rst"]
pygments_style = "sphinx"
todo_include_todos = False
# To run linkcheck (last argument is the output dir)
# sphinx-build --builder linkcheck hypothesis-python/docs linkcheck
linkcheck_ignore = [
# we'll assume that python isn't going to break peps, and github isn't going
# to break issues/pulls. (and if they did, we'd hopefully notice quickly).
r"https://peps.python.org/pep-.*",
r"https://github.com/HypothesisWorks/hypothesis/issues/\d+",
r"https://github.com/HypothesisWorks/hypothesis/pull/\d+",
]
intersphinx_mapping = {
"python": ("https://docs.python.org/3/", None),
"numpy": ("https://numpy.org/doc/stable/", None),
"pandas": ("https://pandas.pydata.org/pandas-docs/stable/", None),
"pytest": ("https://docs.pytest.org/en/stable/", None),
"django": (
"http://docs.djangoproject.com/en/stable/",
"http://docs.djangoproject.com/en/stable/_objects/",
),
"dateutil": ("https://dateutil.readthedocs.io/en/stable/", None),
"redis": ("https://redis.readthedocs.io/en/stable/", None),
"attrs": ("https://www.attrs.org/en/stable/", None),
"sphinx": ("https://www.sphinx-doc.org/en/master/", None),
"IPython": ("https://ipython.readthedocs.io/en/stable/", None),
"lark": ("https://lark-parser.readthedocs.io/en/stable/", None),
"xarray": ("https://docs.xarray.dev/en/stable/", None),
}
autodoc_mock_imports = ["numpy", "pandas", "redis", "django", "pytz"]
rst_prolog = (Path(__file__).parent / "prolog.rst").read_text()
codeautolink_autodoc_inject = False
codeautolink_global_preface = """
from hypothesis import *
import hypothesis.strategies as st
from hypothesis.strategies import *
"""
# This config value must be a dictionary of external sites, mapping unique
# short alias names to a base URL and a prefix.
# See http://sphinx-doc.org/ext/extlinks.html
_repo = "https://github.com/HypothesisWorks/hypothesis/"
extlinks = {
"commit": (_repo + "commit/%s", "commit %s"),
"gh-file": (_repo + "blob/master/%s", "%s"),
"gh-link": (_repo + "%s", "%s"),
"issue": (_repo + "issues/%s", "issue #%s"),
"pull": (_repo + "pull/%s", "pull request #%s"),
"pypi": ("https://pypi.org/project/%s/", "%s"),
"bpo": ("https://bugs.python.org/issue%s", "bpo-%s"),
"xp-ref": ("https://data-apis.org/array-api/latest/API_specification/%s", "%s"),
"wikipedia": ("https://en.wikipedia.org/wiki/%s", "%s"),
}
# -- Options for HTML output ----------------------------------------------
html_theme = "furo"
# remove "Hypothesis <version> documentation" from just below logo on the sidebar
html_theme_options = {"sidebar_hide_name": True}
html_static_path = ["_static"]
html_css_files = ["better-signatures.css", "wrap-in-tables.css", "no-scroll.css"]
htmlhelp_basename = "Hypothesisdoc"
html_favicon = "../../brand/favicon.ico"
html_logo = "../../brand/dragonfly-rainbow-150w.svg"
# -- Options for LaTeX output ---------------------------------------------
latex_elements = {}
latex_documents = [
(master_doc, "Hypothesis.tex", "Hypothesis Documentation", author, "manual")
]
man_pages = [(master_doc, "hypothesis", "Hypothesis Documentation", [author], 1)]
texinfo_documents = [
(
master_doc,
"Hypothesis",
"Hypothesis Documentation",
author,
"Hypothesis",
"Advanced property-based testing for Python.",
"Miscellaneous",
)
]
|