summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2017-02-20 21:23:16 -0800
committerJeff Forcier <jeff@bitprophet.org>2017-02-20 21:23:25 -0800
commit97c8becb3a192aae89d6eb5b4c92c8084420baed (patch)
tree98ceb778c36a8dc56de819f1f454f722959c9941 /tasks.py
parentf9bafb731054db9299ba03551e440a46992e9c7c (diff)
downloadparamiko-97c8becb3a192aae89d6eb5b4c92c8084420baed.tar.gz
Main release module configures the tasks to hide stdout, undo that
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks.py b/tasks.py
index 61319aa9..41df8b27 100644
--- a/tasks.py
+++ b/tasks.py
@@ -32,7 +32,7 @@ def release(ctx, sdist=True, wheel=True, sign=True, dry_run=False):
Wraps invocations.packaging.publish to add baked-in docs folder.
"""
# Build docs first. Use terribad workaround pending invoke #146
- ctx.run("inv docs")
+ ctx.run("inv docs", pty=True, hide=False)
# Move the built docs into where Epydocs used to live
target = 'docs'
rmtree(target, ignore_errors=True)