We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2bdeea commit a62f0a1Copy full SHA for a62f0a1
test/fixtures.py
@@ -82,7 +82,9 @@ def workspace_other_root_path(tmpdir):
82
@pytest.fixture
83
def config(workspace): # pylint: disable=redefined-outer-name
84
"""Return a config object."""
85
- return Config(workspace.root_uri, {}, 0, {})
+ cfg = Config(workspace.root_uri, {}, 0, {})
86
+ cfg._plugin_settings = {'plugins': {'pylint': {'enabled': False, 'args': [], 'executable': None}}}
87
+ return cfg
88
89
90
0 commit comments