From a535b4be8c34a202115971dcb4f27fa812d7c8f9 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Tue, 21 Jan 2025 07:08:42 +0000 Subject: [PATCH] Use the ``sphinx.testing.fixtures`` pytest plugin --- tests/conftest.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 tests/conftest.py diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 00000000..669f6e5b --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,3 @@ +from __future__ import annotations + +pytest_plugins = ["sphinx.testing.fixtures"]