From fcbb5b8bacadf8b9afaf4228d92dc658216a3c24 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 30 Jun 2016 16:34:42 +0200 Subject: [PATCH] Include pytest-bdd with frozen tests This is needed so the pytest_bdd_apply_hook in conftest is valid - BDD tests are still skipped when frozen for now. --- 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..e7910300b 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_bdd.plugin sys.exit(pytest.main(plugins=[pytestqt.plugin, pytest_mock, pytest_catchlog, pytest_instafail, pytest_faulthandler, pytest_xvfb, - pytest_rerunfailures])) + pytest_rerunfailures, pytest_bdd.plugin]))