mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 22:14:27 +08:00
For now don't use the TypeshedPlugin until we fix all other issues with Jedi
This commit is contained in:
@@ -35,5 +35,5 @@ class _PluginCallbacks(object):
|
||||
plugin_manager = _PluginManager([
|
||||
StdlibPlugin,
|
||||
FlaskPlugin,
|
||||
TypeshedPlugin,
|
||||
#TypeshedPlugin,
|
||||
])
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
import os
|
||||
|
||||
import pytest
|
||||
|
||||
from jedi.plugins import typeshed
|
||||
from jedi.evaluate.context import TreeInstance, BoundMethod, CompiledInstance
|
||||
from parso.utils import PythonVersionInfo
|
||||
@@ -8,6 +10,9 @@ from jedi.evaluate.filters import TreeNameDefinition
|
||||
TYPESHED_PYTHON3 = os.path.join(typeshed._TYPESHED_PATH, 'stdlib', '3')
|
||||
|
||||
|
||||
pytestmark = pytest.mark.skip(reason="For now ignore stub tests")
|
||||
|
||||
|
||||
def test_get_typeshed_directories():
|
||||
def get_dirs(version_info):
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user