summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-02-10 18:03:25 -0800
committerJeff Forcier <jeff@bitprophet.org>2014-02-10 18:03:25 -0800
commit9fa2cfee9d182eefe918c0303c7966667d9673c9 (patch)
treef9bc2e93fe4bfd4530cc598adcf2572df8517062 /tasks.py
parent1560c4ab8a151dc7cadaad4284e713f8668fb2cf (diff)
downloadparamiko-9fa2cfee9d182eefe918c0303c7966667d9673c9.tar.gz
Replace incorrect import of generic test runner w/ custom task
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py13
1 files changed, 10 insertions, 3 deletions
diff --git a/tasks.py b/tasks.py
index c7164158..e402599e 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, task
+from invocations import docs as _docs
d = 'sites'
@@ -20,4 +20,11 @@ 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")
+
+
+ns = Collection(test, docs=docs, www=www)