From ac81b3ae25c9316faf3db7b37c174df32a874c28 Mon Sep 17 00:00:00 2001 From: Marco Rossi Date: Fri, 12 Jan 2024 13:14:55 +0100 Subject: [PATCH] add poe docs task --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0a99f46..62d2d57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,6 @@ pytest = "^7.4.3" pytest-cov = "^4.1.0" pylint = "^3.0.3" - [tool.poetry.group.docs.dependencies] sphinx = "^7.2.6" recommonmark = "^0.7.1" @@ -41,6 +40,9 @@ furo = "^2023.9.10" test = "pytest" lint = "pylint --errors-only src" lint-warnings = "pylint --exit-zero src" +docs = "make -C doc html" +docs-clean = "make -C doc clean" +test-docs = "make -C doc doctest" [tool.pylint.reports] output-format = "colorized"