cmusv / pysheetgrader-core

PySheetGrader -- grading spreadsheet assignments made easy!
Other
2 stars 2 forks source link

Prerequisite cells is not working with the relative rubric type! #32

Open erdogmush opened 2 years ago

erdogmush commented 2 years ago

Also not working with check rubric type.

See #26

erdogmush commented 1 year ago

This may have been fixed? Must add test cases to test-mode files

colelloa commented 1 year ago

issue was due to prereq sometimes being placed in rubric section of yaml, sometimes its own section. added logic in rubric.py as follows:

    rubric_prereq = rubric_dict['prereq'] if 'prereq' in rubric_dict else parsed_comment['prereq'] if 'prereq' in parsed_comment else None