From 0cd3e193b5c2bc259395467bb70329b9eebdd370 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Wed, 7 Aug 2019 12:45:22 -0400 Subject: [PATCH] Change the name of the remote context plugin --- openedx/testing/coverage_context_listener/pytest_plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openedx/testing/coverage_context_listener/pytest_plugin.py b/openedx/testing/coverage_context_listener/pytest_plugin.py index a3a27cb134..e68aec748c 100644 --- a/openedx/testing/coverage_context_listener/pytest_plugin.py +++ b/openedx/testing/coverage_context_listener/pytest_plugin.py @@ -7,7 +7,7 @@ import pytest import requests -class ContextPlugin(object): +class RemoteContextPlugin(object): """ Pytest plugin for reporting pytests contexts to coverage running in another process """ @@ -38,7 +38,7 @@ class ContextPlugin(object): @pytest.hookimpl(tryfirst=True) def pytest_configure(config): - config.pluginmanager.register(ContextPlugin(config), "contextplugin") + config.pluginmanager.register(RemoteContextPlugin(config), "remotecontextplugin") def pytest_addoption(parser):