Skip to content

Commit

Permalink
repo: Add mypy types installation to lint makefile target
Browse files Browse the repository at this point in the history
Some weirdness has been seen regarding mypy not picking up the
types packages that are installed until mypy --install-types is run.
Ensure this is run as part of the makefile lint target

Change-Id: Icb5f12a7331a79ee61db04063e6c7b3073f1be7a
  • Loading branch information
cianmcgrath committed Apr 16, 2024
1 parent 9b32738 commit 3fbe841
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ dev-setup:

lint:
flake8 .
mypy --exclude build --exclude .venv .
mypy --install-types --non-interactive --exclude build --exclude .venv .
./check_copyright.sh

0 comments on commit 3fbe841

Please sign in to comment.