summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-04-05 05:56:53 -0400
committerNed Batchelder <ned@nedbatchelder.com>2021-04-10 10:19:00 -0400
commit48922a4951f80bb7612c8f3b5c738cb99c7b281c (patch)
tree3e89ec1b5406d7487d73b339689eef64880af0d9
parent7f6216bcadbb360fdb339a5638f3c34da325f937 (diff)
downloadpython-coveragepy-git-48922a4951f80bb7612c8f3b5c738cb99c7b281c.tar.gz
build: tox should be quiet
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 350a939c..b5cb0903 100644
--- a/Makefile
+++ b/Makefile
@@ -48,7 +48,7 @@ $(CSS): $(SCSS)
LINTABLE = coverage tests igor.py setup.py __main__.py
lint: ## Run linters and checkers.
- tox -e lint
+ tox -q -e lint
todo:
-grep -R --include=*.py TODO $(LINTABLE)
@@ -57,7 +57,7 @@ pep8:
pycodestyle --filename=*.py --repeat $(LINTABLE)
test:
- tox -e py27,py35 $(ARGS)
+ tox -q -e py27,py35 $(ARGS)
PYTEST_SMOKE_ARGS = -n 6 -m "not expensive" --maxfail=3 $(ARGS)
@@ -71,7 +71,7 @@ pysmoke: ## Run tests quickly with the Python tracer in the lowest supported
# for details.
metacov: ## Run meta-coverage, measuring ourself.
- COVERAGE_COVERAGE=yes tox $(ARGS)
+ COVERAGE_COVERAGE=yes tox -q $(ARGS)
metahtml: ## Produce meta-coverage HTML reports.
python igor.py combine_html