mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00
fix windows snap regex
This commit is contained in:
parent
a28d0c816b
commit
d3dc2fd9b2
1 changed files with 1 additions and 1 deletions
|
@ -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()));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue