add target for local ci testing...

This commit is contained in:
Manuel Barkhau 2018-12-21 20:34:30 +01:00
parent 239479f387
commit 581f3a1ccf

View file

@ -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 --