Skip to content
Snippets Groups Projects
Unverified Commit 04c82901 authored by Calen Pennington's avatar Calen Pennington Committed by GitHub
Browse files

Merge pull request #21306 from cpennington/pytest-remote-context-name

Change the name of the remote context plugin
parents 2c3e97df 0cd3e193
No related branches found
No related tags found
No related merge requests found
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment