From e8d4f147a605b3d5d8392ddb2004eb032c69fdc9 Mon Sep 17 00:00:00 2001 From: poruri sai rahul Date: Tue, 24 Sep 2019 13:19:58 +0100 Subject: [PATCH] FIX : Tell nose not to capture logs which is why we werent seeing the kiva font manager related logs/tracebacks on the enable test runs but we were seeing them in other package test runs! modified: ci/edmtool.py --- ci/edmtool.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/edmtool.py b/ci/edmtool.py index 63297a454..93df32c2c 100644 --- a/ci/edmtool.py +++ b/ci/edmtool.py @@ -182,8 +182,8 @@ def test(runtime, toolkit, pillow, environment): environ = environment_vars.get(toolkit, {}).copy() environ['PYTHONUNBUFFERED'] = "1" commands = [ - "edm run -e {environment} -- coverage run -m nose.core enable -v", - "edm run -e {environment} -- coverage run -a -m nose.core kiva -v", + "edm run -e {environment} -- coverage run -m nose.core enable -v --nologcapture", + "edm run -e {environment} -- coverage run -a -m nose.core kiva -v --nologcapture", ] # We run in a tempdir to avoid accidentally picking up wrong traitsui