From ed8654778394e1e42e8087ad9e3f925d343b15d3 Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Wed, 11 Feb 2015 16:23:10 -0600 Subject: [PATCH] Make pytest capture stdout when running the tests task This makes the logs easier to read. Signed-off-by: Andrew Schoen --- teuthology/task/tests/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/tests/__init__.py b/teuthology/task/tests/__init__.py index 8e27e59cf..ba7dea8f8 100644 --- a/teuthology/task/tests/__init__.py +++ b/teuthology/task/tests/__init__.py @@ -76,7 +76,7 @@ def task(ctx, config): """ status = pytest.main( args=[ - '-s', '-q', + '-q', '--pyargs', __name__ ], plugins=[TeuthologyContextPlugin(ctx, config)] -- 2.47.3