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

fixed bug in passall flag

parent 42dae130
Branches
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ Note this scripts does not grade your report. To grade your report, use: ...@@ -28,7 +28,7 @@ Note this scripts does not grade your report. To grade your report, use:
> python report1_grade.py > python report1_grade.py
Finally, note that if your report is part of a module (package), and the report script requires part of that package, the -m option for python may be useful. Finally, note that if your report is part of a module (package), and the report script requires part of that package, the -m option for python may be useful.
For instance, if the report file is in Documents/course_package/assignment1_dp.py, and `course_package` is a python package, then change directory to 'Documents/` and run: For instance, if the report file is in Documents/course_package/report1.py, and `course_package` is a python package, then change directory to 'Documents/` and run:
> python -m course_package.report1 > python -m course_package.report1
...@@ -62,6 +62,7 @@ def evaluate_report_student(report, question=None, qitem=None, unmute=None, pass ...@@ -62,6 +62,7 @@ def evaluate_report_student(report, question=None, qitem=None, unmute=None, pass
unmute = args.unmute unmute = args.unmute
if passall is None: if passall is None:
passall = args.passall passall = args.passall
print(passall)
results, table_data = evaluate_report(report, question=question, qitem=qitem, verbose=False, passall=passall, show_expected=args.showexpected, show_computed=args.showcomputed,unmute=unmute) results, table_data = evaluate_report(report, question=question, qitem=qitem, verbose=False, passall=passall, show_expected=args.showexpected, show_computed=args.showcomputed,unmute=unmute)
if question is None: if question is None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment