diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-11-13 22:47:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-13 22:47:27 (GMT) |
commit | faadc52e755cdb316a53f3db5aa11cb97f1c4b87 (patch) | |
tree | 1a335cf57d27dc7c396489fe3c1afb6a1d95937a | |
parent | 4defeb007195d2d17ea404b0b6291d1d233010f4 (diff) | |
download | cpython-faadc52e755cdb316a53f3db5aa11cb97f1c4b87.zip cpython-faadc52e755cdb316a53f3db5aa11cb97f1c4b87.tar.gz cpython-faadc52e755cdb316a53f3db5aa11cb97f1c4b87.tar.bz2 |
bpo-40754: Adds _testinternalcapi to Windows installer for test suite (GH-23271)
(cherry picked from commit 9b6934230c35e24d8582ea8c58456fa8eab72ae2)
Co-authored-by: Steve Dower <steve.dower@python.org>
-rw-r--r-- | Misc/NEWS.d/next/Tests/2020-11-13-21-51-34.bpo-40754.Ekoxkg.rst | 1 | ||||
-rw-r--r-- | Tools/msi/test/test_files.wxs | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Misc/NEWS.d/next/Tests/2020-11-13-21-51-34.bpo-40754.Ekoxkg.rst b/Misc/NEWS.d/next/Tests/2020-11-13-21-51-34.bpo-40754.Ekoxkg.rst new file mode 100644 index 0000000..4bd423b --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2020-11-13-21-51-34.bpo-40754.Ekoxkg.rst @@ -0,0 +1 @@ +Include ``_testinternalcapi`` module in Windows installer for test suite diff --git a/Tools/msi/test/test_files.wxs b/Tools/msi/test/test_files.wxs index 82a9115..9127ce8 100644 --- a/Tools/msi/test/test_files.wxs +++ b/Tools/msi/test/test_files.wxs @@ -1,6 +1,6 @@ -<?xml version="1.0" encoding="UTF-8"?> +<?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> - <?define exts=_testcapi;_ctypes_test;_testbuffer;_testimportmultiple;_testmultiphase;_testconsole ?> + <?define exts=_testcapi;_ctypes_test;_testbuffer;_testimportmultiple;_testmultiphase;_testconsole;_testinternalcapi ?> <Fragment> <ComponentGroup Id="test_extensions"> <?foreach ext in $(var.exts)?> |