From 672b0436b765886c7b46e2652736b625f6ee6dc5 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 18 May 2014 16:32:22 -0700 Subject: [PATCH] include test data in the windows installer, so tests don't fail (closes #19866) --- Tools/msi/msi.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index e2c1434b0a..fb57a43fcf 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -1035,8 +1035,12 @@ def add_files(db): lib.add_file("zipdir.zip") if dir=='tests' and parent.physical=='distutils': lib.add_file("Setup.sample") + if dir=='audiodata': + lib.glob("*.*") if dir=='decimaltestdata': lib.glob("*.decTest") + if dir=='imghdrdata': + lib.glob("*.*") if dir=='xmltestdata': lib.glob("*.xml") lib.add_file("test.xml.out") -- 2.50.1