From 1a3876fe27b2bb785ec7963027cd44ef26c47ec0 Mon Sep 17 00:00:00 2001 From: Leah Wasser Date: Fri, 28 Feb 2025 12:59:33 -0700 Subject: [PATCH] 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 daba76b..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 src/" +docstrings = "pydoclint src/ tests/" code = "ruff check {args}" format = "ruff format {args}" check = ["docstrings", "code"]