From 3b0b0e93a565afe35b1daad42a26305032952815 Mon Sep 17 00:00:00 2001 From: faph Date: Thu, 19 Sep 2024 10:01:07 +0100 Subject: [PATCH] Add pytest dependency for docs and linting --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 40ba7ce..7e90480 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -67,6 +67,7 @@ dependencies = [ [project.optional-dependencies] docs = [ + "pytest", # Because we import this in inference_server.testing "sphinx", "sphinx-rtd-theme", ] @@ -81,6 +82,7 @@ linting = [ "isort", "mypy", "pre-commit", + "pytest", # Because we import this in inference_server.testing ]