From 8254f0162b54aff7c0aa4877ceb592bf19e4822b Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Wed, 10 Sep 2014 14:41:48 -0700 Subject: Force PTY in test runner so Python 3's buffering behavior isn't frustrating --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tasks.py') diff --git a/tasks.py b/tasks.py index 94bf0aa2..cf43a5fd 100644 --- a/tasks.py +++ b/tasks.py @@ -28,7 +28,7 @@ www = Collection.from_module(_docs, name='www', config={ # Until we move to spec-based testing @task def test(ctx): - ctx.run("python test.py --verbose") + ctx.run("python test.py --verbose", pty=True) @task def coverage(ctx): -- cgit v1.2.1