diff --git a/makefile b/makefile index 4e9c2bf..94e257b 100644 --- a/makefile +++ b/makefile @@ -438,6 +438,13 @@ endif @rm -rf "test/__pycache__"; +## Run `make lint mypy test` using docker +.PHONY: citest +citest: + docker build --file Dockerfile --tag tmp_citest_$(PKG_NAME) . + docker run --tty tmp_citest_$(PKG_NAME) make lint mypy test + + ## -- Build/Deploy --