diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-02 18:01:16 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-02 18:01:16 -0700 |
commit | 46b4f588b2e58fe5d2d4b1a885c095f24c6cd400 (patch) | |
tree | c24c67663ef3a2759ab91595e514133d8c94d8f9 /python/Makefile | |
parent | f19414e707e68eb1d0fe669963a476c4656a259c (diff) | |
download | fatcat-46b4f588b2e58fe5d2d4b1a885c095f24c6cd400.tar.gz fatcat-46b4f588b2e58fe5d2d4b1a885c095f24c6cd400.zip |
revert '-vv' for pytest in Makefile (too verbose)
Diffstat (limited to 'python/Makefile')
-rw-r--r-- | python/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/Makefile b/python/Makefile index ec3335a5..7f18b0e7 100644 --- a/python/Makefile +++ b/python/Makefile @@ -31,7 +31,7 @@ fmt: ## Run code formating on all source code .PHONY: test test: ## Run all tests and lints @curl --silent localhost:9411/v0/changelog > /dev/null || (echo "API not running locally, bailing early from tests" && exit 1) - pipenv run pytest -vv + pipenv run pytest .PHONY: coverage coverage: ## Run all tests with coverage |