diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-09-27 17:54:48 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-09-27 17:54:48 +0200 |
commit | 66e694b2575de3b71cd2fba455710d9eb6c4b722 (patch) | |
tree | 70ab6be7843833f7cdf7754f21d572dcf0f5b288 /python/Makefile | |
parent | b86e4545487763be9542f446ab346cd1dad565cc (diff) | |
download | refcat-66e694b2575de3b71cd2fba455710d9eb6c4b722.tar.gz refcat-66e694b2575de3b71cd2fba455710d9eb6c4b722.zip |
python: cleanup code
Diffstat (limited to 'python/Makefile')
-rw-r--r-- | python/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/python/Makefile b/python/Makefile index 6821aed..d686297 100644 --- a/python/Makefile +++ b/python/Makefile @@ -38,13 +38,14 @@ else rsync -avP $^ ${DEPLOY_TARGET} endif -.PHONY: test -test: - pytest -v tests +# .PHONY: test +# test: +# pytest -v tests .PHONY: fmt fmt: yapf -p -i -r $(PKGNAME) tests + isort $(PKGNAME) .PHONY: clean clean: |