chore: remove bok-choy

This commit is contained in:
salman2013
2023-09-27 18:56:25 +05:00
parent 9fb6d0aae1
commit 3d893a510a

View File

@@ -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")