diff --git a/tasks.py b/tasks.py index 561bf82..3925860 100644 --- a/tasks.py +++ b/tasks.py @@ -30,6 +30,7 @@ def test(): def test_all(): run("tox") + @task def test_cov(): run("py.test --verbose --showlocals --cov=django_make_app tests/") @@ -45,11 +46,6 @@ def test_nosetests(): run("python setup.py nosetests -v --with-doctest") -@task -def test_all(): - run("tox") - - @task def coverage(): run("coverage run --source django_make_app setup.py test")