diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-02-11 09:48:00 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-02-11 09:48:00 -0800 |
commit | 36b937d436e2fa1d77982d0f0fb1cd230bd42560 (patch) | |
tree | 1d0d7d8cb8bbc18d4e3e53fde9c7f35a7125e723 /tasks.py | |
parent | 36abefdac05a1f764e7da0f258b5303b87384192 (diff) | |
parent | 2d3b13e91705a2940f8af0c3d363190bee85ea0d (diff) |
Merge branch '1.10' into 1.11
Diffstat (limited to 'tasks.py')
-rw-r--r-- | tasks.py | 17 |
1 files changed, 14 insertions, 3 deletions
@@ -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) |