Include BeautifulSoup4 in freeze_tests.py.

This commit is contained in:
Florian Bruhin 2015-08-16 21:41:30 +02:00
parent ffe6411a5a
commit a463811940

View File

@ -52,7 +52,7 @@ def get_build_exe_options():
"""Get build_exe options with additional includes.""" """Get build_exe options with additional includes."""
opts = freeze.get_build_exe_options(skip_html=True) opts = freeze.get_build_exe_options(skip_html=True)
opts['includes'] += pytest.freeze_includes() # pylint: disable=no-member opts['includes'] += pytest.freeze_includes() # pylint: disable=no-member
opts['includes'] += ['unittest.mock', 'PyQt5.QtTest', 'hypothesis'] opts['includes'] += ['unittest.mock', 'PyQt5.QtTest', 'hypothesis', 'bs4']
opts['packages'].append('qutebrowser') opts['packages'].append('qutebrowser')
return opts return opts