diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-12-28 23:34:51 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-01-05 17:50:47 -0800 |
commit | 8d64bf54aabaf7fd9411a0304e9455770cfba3a9 (patch) | |
tree | f2b2e42260c8e556cd007ec9f070dccd2778e415 /python/Makefile | |
parent | a94fd2c5ed82d1373a0fd83541c4e58ca2e23d55 (diff) | |
download | sandcrawler-8d64bf54aabaf7fd9411a0304e9455770cfba3a9.tar.gz sandcrawler-8d64bf54aabaf7fd9411a0304e9455770cfba3a9.zip |
python makefile: don't duplicate 'lint' commands during 'test'
Diffstat (limited to 'python/Makefile')
-rw-r--r-- | python/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/python/Makefile b/python/Makefile index f808b87..9593ab4 100644 --- a/python/Makefile +++ b/python/Makefile @@ -25,8 +25,6 @@ fmt: ## Run code formating on all source code .PHONY: test test: ## Run all tests and lints - pipenv run flake8 . --select=E9,F63,F7,F82 --exit-zero - pipenv run mypy *.py sandcrawler/ tests/ --ignore-missing-imports pipenv run pytest .PHONY: coverage |