Files
pyinstaller/buildtests/test_site_module.spec
T
naufraghi ca4dec1af2 Test the real problem: not imp but site
git-svn-id: http://svn.pyinstaller.org/trunk@583 8dd32b29-ccff-0310-8a9a-9233e24343b1
2008-12-13 14:31:01 +00:00

23 lines
634 B
RPMSpec

# -*- mode: python -*-
__testname__ = 'test_site_module'
a = Analysis(['../support/_mountzlib.py',
'../support/useUnicode.py',
'test_site_module.py'],
pathex=[])
pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
exclude_binaries=1,
name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'),
debug=False,
strip=False,
upx=False,
console=1 )
coll = COLLECT( exe,
a.binaries,
strip=False,
upx=False,
name=os.path.join('dist', __testname__),)