Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed unused grading options #40

Merged
merged 9 commits into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ grading*/
# virtualenv
env/
.venv/
venv/
2 changes: 1 addition & 1 deletion samples/grading_file_code.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Identification:
## Commentaires pertinents

Bonnes raisons d'un commentaire
+ Explication d'un algorithme
+ Explication d'un algorithme
+ Procédure peu évidente (ou *hack*)
+ Référence d'extraits de code copiés d'Internet
+ Détail du POURQUOI d'un extrait de code
Expand Down
63 changes: 0 additions & 63 deletions samples/grading_file_final_report.md

This file was deleted.

2 changes: 0 additions & 2 deletions src/models/grade.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
class AssignmentType(Enum):
CODE = f"{script_root_directory}/samples/grading_file_code.md"
REPORT = f"{script_root_directory}/samples/grading_file_report.md"
PROJECT = f"{script_root_directory}/samples/grading_file_project.md"
FINAL = f"{script_root_directory}/samples/grading_file_final_report.md"

def get_teams_list(grading_directory: str):
return [team for team in listdir(grading_directory) if
Expand Down
Loading