From 3d893a510a8a222bbdcb1eea587238d4ddb37f0f Mon Sep 17 00:00:00 2001 From: salman2013 Date: Wed, 27 Sep 2023 18:56:25 +0500 Subject: [PATCH] chore: remove bok-choy --- openedx/testing/coverage_context_listener/pytest_plugin.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/openedx/testing/coverage_context_listener/pytest_plugin.py b/openedx/testing/coverage_context_listener/pytest_plugin.py index 37051385c0..bb8dfcd37a 100644 --- a/openedx/testing/coverage_context_listener/pytest_plugin.py +++ b/openedx/testing/coverage_context_listener/pytest_plugin.py @@ -4,7 +4,6 @@ A pytest plugin that reports test contexts to coverage running in another proces import pytest - class RemoteContextPlugin: """ Pytest plugin for reporting pytests contexts to coverage running in another process @@ -22,7 +21,6 @@ class RemoteContextPlugin: def pytest_runtest_call(self, item): self.doit(item, "call") - @pytest.hookimpl(tryfirst=True) def pytest_configure(config): config.pluginmanager.register(RemoteContextPlugin(config), "remotecontextplugin")