From a7438a36726f1f98824c9ac5b70599a13175fed4 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 19 Jul 2024 10:44:59 -0400 Subject: [PATCH] Fix some intersphinx warnings by adding a mapping to pytest. --- docs/conf.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 3215048..1c8a8a1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -40,3 +40,7 @@ # Preserve authored syntax for defaults autodoc_preserve_defaults = True + +intersphinx_mapping.update( + pytest=('https://docs.pytest.org/en/stable', None), +)