From 151986328e09910e57c9d18f2a209d7a53ce5050 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Fri, 12 Sep 2014 11:31:05 +0200 Subject: [PATCH] tasks: Pass path and coverage on to test task --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 80b655b5..7b5692e3 100644 --- a/tasks.py +++ b/tasks.py @@ -13,7 +13,7 @@ def docs(watch=False, warn=False): @task def test(path=None, coverage=False, watch=False, warn=False): if watch: - return watcher(test) + return watcher(test, path=path, coverage=coverage) path = path or 'tests/' cmd = 'nosetests' if coverage: