From 00884d7b2fd98d8bba0471a6a26a93c3dcb7e52e Mon Sep 17 00:00:00 2001 From: Leah Wasser Date: Thu, 27 Feb 2025 17:01:18 -0700 Subject: [PATCH] fix: tests - run pydoclint on src and texts add: run pydoclint on tests too --- template/pyproject.toml.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/pyproject.toml.jinja b/template/pyproject.toml.jinja index 42aea9b..c3f90c4 100644 --- a/template/pyproject.toml.jinja +++ b/template/pyproject.toml.jinja @@ -208,7 +208,7 @@ dependencies = [ detached = true [tool.hatch.envs.style.scripts] -docstrings = "pydoclint" +docstrings = "pydoclint src/ tests/" code = "ruff check {args}" format = "ruff format {args}" check = ["docstrings", "code"]