fix windows snap regex

This commit is contained in:
Aria Desires 2025-05-29 12:53:44 -04:00
parent a28d0c816b
commit d3dc2fd9b2

View file

@ -204,7 +204,7 @@ impl TestContext {
pub fn with_filtered_python_names(mut self) -> Self {
if cfg!(windows) {
self.filters
.push(("python.exe".to_string(), "python".to_string()));
.push((r"python\.exe".to_string(), "python".to_string()));
} else {
self.filters
.push((r"python\d.\d\d".to_string(), "python".to_string()));