From a463811940af96215918c6018114aefe16db1c8e Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 16 Aug 2015 21:41:30 +0200 Subject: [PATCH] Include BeautifulSoup4 in freeze_tests.py. --- scripts/dev/freeze_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dev/freeze_tests.py b/scripts/dev/freeze_tests.py index 498edca84..a84d0c9f9 100755 --- a/scripts/dev/freeze_tests.py +++ b/scripts/dev/freeze_tests.py @@ -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', 'hypothesis'] + opts['includes'] += ['unittest.mock', 'PyQt5.QtTest', 'hypothesis', 'bs4'] opts['packages'].append('qutebrowser') return opts