From caa0279ebb593e79e20182bea44742010d71e6a3 Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Mon, 22 Jul 2024 13:51:48 -0700 Subject: [PATCH] Chore: Compile pytest tests as part of `poe check` (#306) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 31da4c49..a2d0f6c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -316,7 +316,7 @@ coverage-report = { shell = "coverage report" } coverage-html = { shell = "coverage html -d htmlcov && open htmlcov/index.html" } coverage-reset = { shell = "coverage erase" } -check = { shell = "ruff check . && mypy ." } +check = { shell = "ruff check . && mypy . && pytest --collect-only" } fix = { shell = "ruff format . && ruff check --fix -s || ruff format ." } fix-unsafe = { shell = "ruff format . && ruff check --fix --unsafe-fixes . && ruff format ." }