From: Steve Dower Date: Fri, 29 Sep 2023 15:24:38 +0000 (+0100) Subject: gh-109615: Look for 'Modules' as landmark for test_copy_python_src_ignore (GH-110108) X-Git-Tag: v3.13.0a1~223 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=20bc5f7c28a6f8a2e156c4a748ffabb5efc7c761;p=thirdparty%2FPython%2Fcpython.git gh-109615: Look for 'Modules' as landmark for test_copy_python_src_ignore (GH-110108) --- diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index e4a246ba3ddd..902bec784513 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")