Skip documentation when freezing for smoke-frozen.

This commit is contained in:
Florian Bruhin 2015-06-19 07:48:12 +02:00
parent a5610fd6da
commit fd82587213
2 changed files with 5 additions and 1 deletions

View File

@ -49,6 +49,10 @@ def get_egl_path():
def get_build_exe_options(skip_html=False):
if '--qute-skip-html' in sys.argv:
skip_html = True
sys.argv.remove('--qute-skip-html')
include_files = [
('qutebrowser/javascript', 'javascript'),
('qutebrowser/git-commit-id', 'git-commit-id'),

View File

@ -167,7 +167,7 @@ deps =
cx_Freeze==4.3.4
commands =
{envpython} scripts/link_pyqt.py --tox {envdir}
{envpython} scripts/freeze.py build_exe -b {envdir}/build
{envpython} scripts/freeze.py build_exe --qute-skip-html -b {envdir}/build
{envdir}/build/qutebrowser --no-err-windows --nowindow --temp-basedir about:blank ":later 500 quit"
[pytest]