summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Verfaillie <dieterv@optionexplicit.be>2011-03-24 15:53:26 +0100
committerJohn Stowers <john.stowers@gmail.com>2011-03-25 09:07:28 +1300
commitddcbf6c3c9d7a1102ff2d22c5d7533d3022a09ed (patch)
treeedc8dc41bbc2539a45784e9df57928e04151f5a6
parent913fe0227f0c00b5c4f9c2af594eba56b0972545 (diff)
downloadpygtk-ddcbf6c3c9d7a1102ff2d22c5d7533d3022a09ed.tar.gz
setup.py: include glade files required by tests
-rwxr-xr-xsetup.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index f2628aa9..fcef009d 100755
--- a/setup.py
+++ b/setup.py
@@ -120,6 +120,9 @@ class PyGtkInstallLib(InstallLib):
for testfile in glob.glob('tests/test*.py'):
self.copy_test(os.path.basename(testfile))
+ for gladefile in glob.glob('tests/*.glade'):
+ self.copy_test(os.path.basename(gladefile))
+
class PyGtkInstallData(InstallData):
def run(self):