From 504d2aae0cb4299df25c3deb7200aad128632291 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 17 Mar 2020 15:27:51 +0100 Subject: [PATCH] Test options: don't show logging output The logging is sent to stdout already (which is captured and printed by PyTest), so having PyTest also capture and print logging just doubles the output. No functional changes. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index bd60dc5..367ab83 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [tool:pytest] -addopts = -v --cov blender_asset_tracer --cov-report term-missing +addopts = -v --cov blender_asset_tracer --cov-report term-missing --no-print-logs [pep8] max-line-length = 100