summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2015-04-29 19:39:06 -0700
committerJeff Forcier <jeff@bitprophet.org>2015-04-29 19:39:06 -0700
commit54415207d186155afab6bd3a8571a70587a85fab (patch)
tree73d9b24835963339e064c74fee72329a9e86052d
parentc7b456945a06c48aae8096549c339ce95a898802 (diff)
parent9c77538747881bb8cb3f6c7b220515cfd6943b92 (diff)
Merge branch '1.15'
-rw-r--r--tasks.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tasks.py b/tasks.py
index c7d28b16..3d575670 100644
--- a/tasks.py
+++ b/tasks.py
@@ -17,6 +17,11 @@ def test(ctx, coverage=False):
ctx.run("{0} test.py {1}".format(runner, flags), pty=True)
+@task
+def coverage(ctx):
+ ctx.run("coverage run --source=paramiko test.py --verbose")
+
+
# Until we stop bundling docs w/ releases. Need to discover use cases first.
@task
def release(ctx):