Skip to content

Commit

Permalink
Fixing the progress percentage
Browse files Browse the repository at this point in the history
  • Loading branch information
nidhalmessaoudi committed Feb 27, 2023
1 parent e3a20b8 commit 1acbbb6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@ pub fn verify<'a>(
progress: (usize, usize),
verbose: bool,
) -> Result<(), &'a Exercise> {
let (mut num_done, total) = progress;
let (num_done, total) = progress;
let bar = ProgressBar::new(total as u64);
let mut percentage = num_done as f32 / total as f32 * 100.0;
bar.set_style(ProgressStyle::default_bar()
.template("Progress: [{bar:60.green/red}] {pos}/{len} {msg}")
.progress_chars("#>-")
);
bar.set_position(num_done as u64);
bar.set_message(format!("({:.1} %)", 0.));
bar.set_message(format!("({:.1} %)", percentage));

for exercise in exercises {
let compile_result = match exercise.mode {
Expand All @@ -31,8 +32,7 @@ pub fn verify<'a>(
if !compile_result.unwrap_or(false) {
return Err(exercise);
}
num_done += 1;
let percentage = num_done as f32 / total as f32 * 100.0;
percentage += 100.0 / total as f32;
bar.inc(1);
bar.set_message(format!("({:.1} %)", percentage));
}
Expand Down

0 comments on commit 1acbbb6

Please sign in to comment.