From 86f2f16d05d34e18f011501a6ebe11e7e30e1710 Mon Sep 17 00:00:00 2001 From: Aria Desires Date: Thu, 23 Jan 2025 14:13:00 -0500 Subject: [PATCH] make test filter permissive of bdist.win32 (#10911) I swear a few days ago there were way more of this filter but now there's only one so *shrug*. --- crates/uv/tests/it/tool_install.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv/tests/it/tool_install.rs b/crates/uv/tests/it/tool_install.rs index a94ff8c54..822c4699f 100644 --- a/crates/uv/tests/it/tool_install.rs +++ b/crates/uv/tests/it/tool_install.rs @@ -1464,7 +1464,7 @@ fn tool_install_uninstallable() { .into_iter() .chain([ (r"exit code: 1", "exit status: 1"), - (r"bdist\.[^/\\\s]+-[^/\\\s]+", "bdist.linux-x86_64"), + (r"bdist\.[^/\\\s]+(-[^/\\\s]+)?", "bdist.linux-x86_64"), (r"\\\.", ""), (r"#+", "#"), ])