From: Andrew Schoen Date: Wed, 11 Feb 2015 22:23:10 +0000 (-0600) Subject: Make pytest capture stdout when running the tests task X-Git-Tag: 1.1.0~1010^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=ed8654778394e1e42e8087ad9e3f925d343b15d3;p=teuthology.git Make pytest capture stdout when running the tests task This makes the logs easier to read. Signed-off-by: Andrew Schoen --- diff --git a/teuthology/task/tests/__init__.py b/teuthology/task/tests/__init__.py index 8e27e59cf1..ba7dea8f86 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)]