This commit is contained in:
Ralf Jung 2022-05-30 12:32:49 +02:00
parent 80bf204848
commit 4d80880854

View File

@ -89,7 +89,11 @@ pub fn run_tests(config: Config) {
// Ignore file if only/ignore rules do (not) apply // Ignore file if only/ignore rules do (not) apply
if ignore_file(&comments, &target) { if ignore_file(&comments, &target) {
ignored.fetch_add(1, Ordering::Relaxed); ignored.fetch_add(1, Ordering::Relaxed);
eprintln!("{} ... {}", path.display(), "ignored (in-test comment)".yellow()); eprintln!(
"{} ... {}",
path.display(),
"ignored (in-test comment)".yellow()
);
continue; continue;
} }
// Run the test for all revisions // Run the test for all revisions