[ty] Only print dashed line for failing tests (#22080)

This commit is contained in:
Micha Reiser 2025-12-19 14:20:03 +01:00 committed by GitHub
parent 58d25129aa
commit 30efab8138
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -147,11 +147,11 @@ pub fn run(
"{}='{escaped_test_name}' cargo test -p ty_python_semantic --test mdtest -- {test_name}",
EnvVars::MDTEST_TEST_FILTER,
);
println!("\n{}\n", "-".repeat(50));
}
}
println!("\n{}\n", "-".repeat(50));
assert!(!any_failures, "Some tests failed.");
Ok(())