From 20bc5f7c28a6f8a2e156c4a748ffabb5efc7c761 Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Fri, 29 Sep 2023 16:24:38 +0100 Subject: gh-109615: Look for 'Modules' as landmark for test_copy_python_src_ignore (GH-110108) --- Lib/test/test_support.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index e4a246b..902bec7 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -812,7 +812,9 @@ class TestSupport(unittest.TestCase): if not os.path.exists(src_dir): self.skipTest(f"cannot access Python source code directory:" f" {src_dir!r}") - landmark = os.path.join(src_dir, 'Lib', 'os.py') + # Check that the landmark copy_python_src_ignore() expects is available + # (Previously we looked for 'Lib\os.py', which is always present on Windows.) + landmark = os.path.join(src_dir, 'Modules') if not os.path.exists(landmark): self.skipTest(f"cannot access Python source code directory:" f" {landmark!r} landmark is missing") -- cgit v0.12