From 561597b81483787fb1577a5da4235b888ab0f8cd Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Thu, 17 Oct 2024 22:19:54 -0400 Subject: [PATCH] fix: pdm lint on tests --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d5c3f67..7636079 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ test = ["pytest>=8.3.3", "pytest-cov>=5.0.0"] dev = ["pre-commit>=4.0.1"] [tool.pdm.scripts] -lint = "mypy joj3_config_generator" +lint = "mypy joj3_config_generator tests" test = "pytest" all = { composite = ["lint", "test"] } app.call = "joj3_config_generator.main:app"