summaryrefslogtreecommitdiffhomepage
path: root/tasks.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-02-11 14:26:34 -0800
committerJeff Forcier <jeff@bitprophet.org>2014-02-11 14:26:34 -0800
commit3a7b66a81451cf9d5d1f17d2b6fec8918c2ee41f (patch)
tree633a0ba24d0248d0d27a78bd4b7cebdcb8a3c821 /tasks.py
parentc7090c52de983746cbccfcb8213d1d18132ae5f2 (diff)
parent41d7339992a7141bd7499f5604f3db5b3389481e (diff)
Merge branch '1.11' into 1.12
Conflicts: sites/www/changelog.rst
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py17
1 files changed, 14 insertions, 3 deletions
diff --git a/tasks.py b/tasks.py
index c7164158..f8f4017d 100644
--- a/tasks.py
+++ b/tasks.py
@@ -1,7 +1,7 @@
from os.path import join
-from invoke import Collection
-from invocations import docs as _docs, testing
+from invoke import Collection, ctask as task
+from invocations import docs as _docs
d = 'sites'
@@ -20,4 +20,15 @@ www = Collection.from_module(_docs, name='www', config={
'sphinx.target': join(path, '_build'),
})
-ns = Collection(testing.test, docs=docs, www=www)
+
+# Until we move to spec-based testing
+@task
+def test(ctx):
+ ctx.run("python test.py --verbose")
+
+@task
+def coverage(ctx):
+ ctx.run("coverage run --source=paramiko test.py --verbose")
+
+
+ns = Collection(test, coverage, docs=docs, www=www)