modified coverage so it no longer uses help as an argument, and prefix and suffix in manage are empty strings instead of None bc that was giving an error
This commit is contained in:
parent
b92c025f75
commit
f740981bd5
1 changed files with 2 additions and 2 deletions
|
|
@ -62,7 +62,7 @@ def commandline(args="", workingdir=None):
|
|||
|
||||
|
||||
@task
|
||||
def manage(args="", workingdir=None, prefix=None, suffix=None):
|
||||
def manage(args="help", workingdir=None, prefix="", suffix=""):
|
||||
configuration = env.config
|
||||
|
||||
# changes the working directory to the djangoroot
|
||||
|
|
@ -123,7 +123,7 @@ def manage(args="", workingdir=None, prefix=None, suffix=None):
|
|||
|
||||
|
||||
@task
|
||||
def coverage(args="help", workingdir=None, outputdir=None,
|
||||
def coverage(args="", workingdir=None, outputdir=None,
|
||||
coveragerc=False, report=True, html=True):
|
||||
"""
|
||||
helper method that uses the coverage package
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue