summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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):