Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
be4135a
remove private
fidoriel May 19, 2025
3bed114
Add average results to exporter
fidoriel Nov 4, 2024
67c3276
add tests for results exporter average
fidoriel Jan 13, 2025
676bd40
adress comments
fidoriel Jan 27, 2025
3bc8814
revert to tuple
fidoriel Feb 17, 2025
a5eedbf
rename functions
fidoriel Feb 17, 2025
1bdb5c9
add style
fidoriel Feb 17, 2025
a697d21
remove useless test
fidoriel Feb 17, 2025
f618d37
rephrase
fidoriel Mar 10, 2025
ca1c44f
fix test
fidoriel Mar 10, 2025
d61be22
revert type
fidoriel Mar 24, 2025
4ae2571
use hard coded in test
fidoriel Mar 24, 2025
eb96a66
merge tests
fidoriel Mar 24, 2025
8a736d0
revert changes
fidoriel May 19, 2025
b3adec6
Update evap/results/exporters.py
fidoriel Oct 20, 2025
f93ee5b
Update evap/results/exporters.py
fidoriel Oct 20, 2025
3163bd6
Update evap/results/exporters.py
fidoriel Oct 20, 2025
ee64f6f
Merge branch 'main' into average-grades-in-export
fidoriel Oct 20, 2025
fc91dbc
Update evap/results/exporters.py
fidoriel Oct 20, 2025
648cd14
Update evap/results/exporters.py
fidoriel Oct 20, 2025
a658751
make it work with recent changes
fidoriel Oct 20, 2025
cd41bc6
Merge branch 'main' into feat/2001
Belissimo-T Mar 30, 2026
1e6065b
move missing_average style from ExcelExporter to ResultsExporter
Belissimo-T Mar 30, 2026
371d934
simplify _get_average_grade_and_approval_ratio arguments
Belissimo-T Mar 30, 2026
cb00410
refactor including averages in eval export
Belissimo-T Apr 20, 2026
6875a02
fix existing tests
Belissimo-T Apr 27, 2026
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
5 changes: 5 additions & 0 deletions evap/evaluation/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,11 @@ def next_row(self) -> None:
self.cur_col = 0
self.cur_row += 1

def next_sheet(self, sheetname: str):
self.cur_sheet = self.workbook.add_sheet(sheetname)
self.cur_row = 0
self.cur_col = 0

def write_row[CV: CellValue](
self,
vals: Iterable[CV],
Expand Down
Loading
Loading