Clean up makefile (#570)

This commit is contained in:
Jonathan Zernik 2021-01-06 23:47:50 -08:00 committed by GitHub
parent 62c13ddaba
commit de949aff6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,25 +13,10 @@ clean:
test: gen-protos
tox
codeformat: gen-protos
tox -e autoflake
tox -e autopep8
tox -e isort
tox -e black
itest:
./itests/run_itest.sh
coverage:
tox -e coverage
mypy: gen-protos
tox -e mypy
run: gen-protos
tox -e run
gen-protos:
tox -e setup
.PHONY: all clean test itest coverage mypy run
.PHONY: all clean test itest gen-protos