From dc9f831c2cb190339765743173c8f12329b40ea9 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Mon, 22 Jun 2020 14:07:53 -0700 Subject: makefile: coverage target --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index f076f2f..9d1fd03 100644 --- a/Makefile +++ b/Makefile @@ -25,6 +25,10 @@ fmt: ## Run code formating on all source code test: lint ## Run all tests and lints pipenv run pytest +.PHONY: coverage +coverage: ## Run all tests with coverage + pipenv run pytest --cov + data/container_stats.json: mkdir -p data cat data/container_export.json | jq .issnl -r | sort -u > /tmp/container_issnl.tsv -- cgit v1.2.3