Add hypothesis to frozen tests.

This commit is contained in:
Florian Bruhin 2015-07-24 18:43:08 +02:00
parent cbed62cafc
commit b03fea26c2

View File

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