Replace incorrect import of generic test runner w/ custom task

This commit is contained in:
Jeff Forcier 2014-02-10 18:03:25 -08:00
parent 1560c4ab8a
commit 9fa2cfee9d
1 changed files with 10 additions and 3 deletions

View File

@ -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)