diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-09-10 14:41:48 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-09-10 14:41:48 -0700 |
commit | 47f8639ef25c9ff79effbe566686339a9c3779d5 (patch) | |
tree | 87dba74739366f3d644d6a66e8f125ce826d4e5d /tasks.py | |
parent | e71f4e59878a636268475f642ed4e98a1b3e375d (diff) |
Force PTY in test runner so Python 3's buffering behavior isn't frustrating
Diffstat (limited to 'tasks.py')
-rw-r--r-- | tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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): |