diff --git a/scripts/dev/freeze_tests.py b/scripts/dev/freeze_tests.py index dede962b3..9f9e2bbd2 100755 --- a/scripts/dev/freeze_tests.py +++ b/scripts/dev/freeze_tests.py @@ -55,8 +55,7 @@ def get_build_exe_options(): opts = freeze.get_build_exe_options(skip_html=True) opts['includes'] += pytest.freeze_includes() opts['includes'] += ['unittest.mock', 'PyQt5.QtTest', 'hypothesis', 'bs4', - 'httpbin', 'jinja2.ext', 'cheroot', 'pstats', 'queue', - 'pytest_benchmark'] + 'httpbin', 'jinja2.ext', 'cheroot', 'pstats', 'queue'] httpbin_dir = os.path.dirname(httpbin.__file__) opts['include_files'] += [ diff --git a/scripts/dev/run_frozen_tests.py b/scripts/dev/run_frozen_tests.py index 8afa5b634..ac1eb9488 100644 --- a/scripts/dev/run_frozen_tests.py +++ b/scripts/dev/run_frozen_tests.py @@ -31,8 +31,10 @@ import pytest_faulthandler import pytest_xvfb import pytest_rerunfailures import pytest_warnings +import pytest_benchmark sys.exit(pytest.main(plugins=[pytestqt.plugin, pytest_mock, pytest_catchlog, pytest_instafail, pytest_faulthandler, pytest_xvfb, - pytest_rerunfailures, pytest_warnings])) + pytest_rerunfailures, pytest_warnings, + pytest_benchmark]))