From 42cc2dc4d935f9430501b9e3941d6596f8e52c77 Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Mon, 2 Dec 2024 11:39:03 +0100 Subject: [PATCH] windows --- tests/integration_test.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/integration_test.rs b/tests/integration_test.rs index a635bd3..f9a3b40 100644 --- a/tests/integration_test.rs +++ b/tests/integration_test.rs @@ -85,6 +85,12 @@ async fn test_noarch_python(options: Options) { .await .unwrap(); + #[cfg(not(unix))] + let required_fs_objects = vec![ + "Lib\\site-packages\\setuptools\\__init__.py", + "Lib\\site-packages\\pkg_resources\\__init__.py", + ]; + #[cfg(unix)] let required_fs_objects = vec![ "lib/python3.13/site-packages/setuptools/__init__.py", "lib/python3.13/site-packages/pkg_resources/__init__.py",