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

feat: print total duration in final test summary #7134

Merged
merged 2 commits into from
Feb 15, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 2 additions & 1 deletion crates/forge/src/result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,10 @@ impl TestOutcome {
let total_skipped = self.skipped();
let total_tests = total_passed + total_failed + total_skipped;
format!(
"\nRan {} test {}: {} tests passed, {} failed, {} skipped ({} total tests)",
"\nRan {} test {} in {:.2?}: {} tests passed, {} failed, {} skipped ({} total tests)",
num_test_suites,
suites,
self.duration(),
Paint::green(total_passed),
Paint::red(total_failed),
Paint::yellow(total_skipped),
Expand Down
2 changes: 1 addition & 1 deletion crates/test-utils/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@ static IGNORE_IN_FIXTURES: Lazy<Regex> = Lazy::new(|| {
// solc runs
r"runs: \d+, μ: \d+, ~: \d+",
// elapsed time
"finished in .*?s",
" ?in .*?s",
// file paths
r"-->.*\.sol",
r"Location(.|\n)*\.rs(.|\n)*Backtrace",
Expand Down
Loading