We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85fb8e8 commit a958218Copy full SHA for a958218
tasks/coverage/src/babel/mod.rs
@@ -45,7 +45,7 @@ impl<T: Case> Suite<T> for BabelSuite<T> {
45
"annex-b/disabled",
46
]
47
.iter()
48
- .any(|p| path.to_string_lossy().contains(p));
+ .any(|p| path.to_string_lossy().replace('\\', "/").contains(p));
49
let incorrect_extension = path.extension().is_none_or(|ext| ext == "json" || ext == "md");
50
not_supported_directory || incorrect_extension
51
}
0 commit comments