From 8bc9fdc8d37fee7d2360cc89db7bf10db9914859 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Sun, 29 May 2011 09:21:48 +0200 Subject: [PATCH] fix a buffering issue that i think/hope only occurs during internal tests --- testing/test_doctest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/test_doctest.py b/testing/test_doctest.py index 67dc7fdbf..771cb52f3 100644 --- a/testing/test_doctest.py +++ b/testing/test_doctest.py @@ -114,7 +114,7 @@ class TestDoctests: >>> i + 1 2 """) - result = testdir.runpytest(p) + result = testdir.runpytest(p, "-s") result.stdout.fnmatch_lines([ '001 >>> i = 0', '002 >>> i + 1',