summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-09-10 14:41:48 -0700
committerJeff Forcier <jeff@bitprophet.org>2014-09-10 14:41:48 -0700
commit47f8639ef25c9ff79effbe566686339a9c3779d5 (patch)
tree87dba74739366f3d644d6a66e8f125ce826d4e5d
parente71f4e59878a636268475f642ed4e98a1b3e375d (diff)
downloadparamiko-47f8639ef25c9ff79effbe566686339a9c3779d5.tar.gz
Force PTY in test runner so Python 3's buffering behavior isn't frustrating
-rw-r--r--tasks.py2
1 files changed, 1 insertions, 1 deletions
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):