Skip to content

Commit 3e59681

Browse files
committed
add test coverage fab command
1 parent 0438ae7 commit 3e59681

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

fabfile.py

+5
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ def test(test_case=''):
3030
_local('django-admin.py test %s' % test_case)
3131

3232

33+
def test_coverage():
34+
_local('coverage run --source=%s --omit=*/migrations/*.py '
35+
'$(which django-admin.py) test' % APP_NAME)
36+
37+
3338
def serve():
3439
"""Start the Django dev server."""
3540
_local('django-admin.py runserver')

0 commit comments

Comments
 (0)