File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -60,15 +60,16 @@ gen-protos = "uv run python scripts/gen_protos.py"
6060lint = [
6161 {cmd = " uv run ruff check" },
6262 {cmd = " uv run ruff format --check" },
63- {ref = " lint-types" },
64- {cmd = " uv run pyright" },
63+ {ref = " lint-types-mypy " },
64+ {ref = " lint-types- pyright" },
6565 {ref = " lint-docs" },
6666]
6767bridge-lint = { cmd = " cargo clippy -- -D warnings" , cwd = " temporalio/bridge" }
6868# TODO(cretz): Why does pydocstyle complain about @overload missing docs after
6969# https://github.com/PyCQA/pydocstyle/pull/511?
7070lint-docs = " uv run pydocstyle --ignore-decorators=overload"
71- lint-types = " uv run mypy --namespace-packages --check-untyped-defs ."
71+ lint-types-mypy = " uv run mypy --namespace-packages --check-untyped-defs ."
72+ lint-types-pyright = " uv run pyright"
7273run-bench = " uv run python scripts/run_bench.py"
7374test = " uv run pytest"
7475
You can’t perform that action at this time.
0 commit comments