Files
pyinstaller/buildtests/test_error_during_import.spec
giovannibajo ab6975e421 Remove site_module test: there is no way it can work because site.py has many
hidden imports (.pth files) that PyInstaller will not see (and should not).


git-svn-id: http://svn.pyinstaller.org/trunk@774 8dd32b29-ccff-0310-8a9a-9233e24343b1
2010-03-12 19:36:23 +00:00

19 lines
505 B
RPMSpec

# -*- mode: python -*-
__testname__ = 'test_error_during_import'
a = Analysis([os.path.join(HOMEPATH,'support/_mountzlib.py'),
os.path.join(HOMEPATH,'support/useUnicode.py'),
__testname__ + '.py'],
)
pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
name = os.path.join('dist', __testname__, __testname__ +'.exe'),
debug=False,
strip=False,
upx=False,
console=1 )