diff --git a/development_fabfile/__init__.py b/development_fabfile/__init__.py index 40f09c6..c7d0ea6 100644 --- a/development_fabfile/__init__.py +++ b/development_fabfile/__init__.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -__version__ = '2.14.2' +__version__ = '2.14.3' diff --git a/development_fabfile/fabfile/local.py b/development_fabfile/fabfile/local.py index f0f9000..9ab4712 100644 --- a/development_fabfile/fabfile/local.py +++ b/development_fabfile/fabfile/local.py @@ -328,4 +328,5 @@ def test(options=None, integration=1, selenium=1, test_settings=None): command += ' {0}'.format(options) with fab_settings(warn_only=True): local(command, capture=False) - local('coverage html -d {} --omit="{}"'.format(settings.COVERAGE_EXCLUDES)) + local('coverage html -d coverage --omit="{}"'.format( + settings.COVERAGE_EXCLUDES))