From b5d3fa763a9144c08d8c8fe98090b44167cc0c91 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 27 Jul 2016 20:44:21 +0200 Subject: [PATCH] Add pytest_warnings to run_frozen_tests.py --- 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 fc3c1cf19..8afa5b634 100644 --- a/scripts/dev/run_frozen_tests.py +++ b/scripts/dev/run_frozen_tests.py @@ -30,8 +30,9 @@ import pytest_instafail import pytest_faulthandler import pytest_xvfb import pytest_rerunfailures +import pytest_warnings sys.exit(pytest.main(plugins=[pytestqt.plugin, pytest_mock, pytest_catchlog, pytest_instafail, pytest_faulthandler, pytest_xvfb, - pytest_rerunfailures])) + pytest_rerunfailures, pytest_warnings]))