Skip to content
Snippets Groups Projects
Commit 0b1eb36e authored by tuhe's avatar tuhe
Browse files

verbose option

parent d0fec220
No related branches found
No related tags found
No related merge requests found
......@@ -39,13 +39,13 @@ def lload(flist, excl):
s = rmimports(s, excl) # remove import statements from helper class.
return s
def setup_grade_file_report(ReportClass, execute=False, obfuscate=False, minify=False, bzip=True, nonlatin=False, source_process_fun=None, with_coverage=True):
def setup_grade_file_report(ReportClass, execute=False, obfuscate=False, minify=False, bzip=True, nonlatin=False, source_process_fun=None, with_coverage=True, verbose=True):
print("Setting up answers...")
url = ReportClass.url
ReportClass.url = None
report = ReportClass()
# report.url = None # We set the URL to none to skip the consistency checks with the remote source.
payload = report._setup_answers(with_coverage=with_coverage)
payload = report._setup_answers(with_coverage=with_coverage, verbose=verbose)
payload['config'] = {}
from unitgrade_private.hidden_gather_upload import gather_report_source_include
sources = gather_report_source_include(report)
......
__version__ = "0.1.39"
__version__ = "0.1.40"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment