Skip to content

Commit

Permalink
Perform a typecheck while locally testing
Browse files Browse the repository at this point in the history
  • Loading branch information
mardiros committed Nov 6, 2024
1 parent c61c6b9 commit 441d856
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ default_functest_suite := 'tests/functionals'
install:
uv sync --group dev

test: lint unittest
test: lint typecheck unittest

lint:
uv run ruff check .

typecheck:
uv run mypy src/ tests/

unittest test_suite=default_unittest_suite:
uv run pytest -sxv {{test_suite}}

Expand Down

0 comments on commit 441d856

Please sign in to comment.