Replies: 4 comments 2 replies
-
See this comment. |
Beta Was this translation helpful? Give feedback.
-
Yes, it is and I understand the problem. But this way a student can avoid to be detected by just adding a file that cannot be parsed. Furthermore it would be nice to generate a list of submissions that were not included as looking through the console output if you have hundreds of submission of which dozens aren't parseable is quite tedious. |
Beta Was this translation helpful? Give feedback.
-
The CLI output will list all invalid files after parsing and before comparison:
This will help you to see all invalid submissions at one. Then you can fix them and run them again if you want to accept invalid submissions from students. However, you can always solve that problem by requiring students to submit functioning code. |
Beta Was this translation helpful? Give feedback.
-
Thanks for your time. Can you imagine how this output looks like if you teach an introduction to programming course for non cs students with >1k participants (independent of what you require them to do)? ;) But I see, I'll script a workaround for myself. Thanks anyways! |
Beta Was this translation helpful? Give feedback.
-
If a single file in the submission has a parse error the entire file is ignored. This makes the detection quite vulnerable as students simply need to hand in one invalid file.
Beta Was this translation helpful? Give feedback.
All reactions