Skip to content

Commit

Permalink
[test] install required packages in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
apalala committed Nov 12, 2023
1 parent cf4a094 commit 2f2b8c0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
test: lint pytest mypy
test: base lint pytest mypy


base:
-@ pip install -qU pip


lint:
-@ pip install -qU ruff
ruff --preview late test

pytest:
-@ pip install -qU pytest
pytest -v


mypy:
-@ pip install -qU mypy
mypy --ignore-missing-imports --check-untyped-defs late test

0 comments on commit 2f2b8c0

Please sign in to comment.