From 67b99047726668cb3479914d9a8fb9ce68cc35f8 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 19 Feb 2016 06:52:19 +0100 Subject: [PATCH] Include pytest-xvfb properly in frozen tests --- scripts/dev/run_frozen_tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/dev/run_frozen_tests.py b/scripts/dev/run_frozen_tests.py index 09782109b..ab933f595 100644 --- a/scripts/dev/run_frozen_tests.py +++ b/scripts/dev/run_frozen_tests.py @@ -28,7 +28,8 @@ import pytest_mock import pytest_catchlog import pytest_instafail import pytest_faulthandler +import pytest_xvfb sys.exit(pytest.main(plugins=[pytestqt.plugin, pytest_mock, pytest_catchlog, pytest_instafail, - pytest_faulthandler])) + pytest_faulthandler, pytest_xvfb]))