Skip documentation when freezing for smoke-frozen.
This commit is contained in:
parent
a5610fd6da
commit
fd82587213
@ -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'),
|
||||
|
2
tox.ini
2
tox.ini
@ -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]
|
||||
|
Loading…
Reference in New Issue
Block a user