]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-117711: Only check for 'test/wheeldata' when it's actually used (#117712)
authorKarolina Surma <33810531+befeleme@users.noreply.github.com>
Thu, 11 Apr 2024 09:37:28 +0000 (11:37 +0200)
committerGitHub <noreply@github.com>
Thu, 11 Apr 2024 09:37:28 +0000 (11:37 +0200)
It's possible to build Python with option `--with-wheel-pkg-dir`
pointing to a custom wheel directory. Don't include the directory in the test
set if the wheels are used from a different location.

Co-authored-by: Miro HronĨok <miro@hroncok.cz>
Lib/test/test_tools/test_makefile.py

index 29f5c28e33bb2bcf43e57dac67603755ee720db2..48a7c1a773bb83db93cf63871e0abfbad942c5b0 100644 (file)
@@ -67,6 +67,10 @@ class TestMakefile(unittest.TestCase):
                 )
                 used.append(relpath)
 
+        # Don't check the wheel dir when Python is built --with-wheel-pkg-dir
+        if sysconfig.get_config_var('WHEEL_PKG_DIR'):
+            test_dirs.remove('test/wheeldata')
+
         # Check that there are no extra entries:
         unique_test_dirs = set(test_dirs)
         self.assertSetEqual(unique_test_dirs, set(used))