mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 06:24: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([
|
plugin_manager = _PluginManager([
|
||||||
StdlibPlugin,
|
StdlibPlugin,
|
||||||
FlaskPlugin,
|
FlaskPlugin,
|
||||||
TypeshedPlugin,
|
#TypeshedPlugin,
|
||||||
])
|
])
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
|
||||||
from jedi.plugins import typeshed
|
from jedi.plugins import typeshed
|
||||||
from jedi.evaluate.context import TreeInstance, BoundMethod, CompiledInstance
|
from jedi.evaluate.context import TreeInstance, BoundMethod, CompiledInstance
|
||||||
from parso.utils import PythonVersionInfo
|
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')
|
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 test_get_typeshed_directories():
|
||||||
def get_dirs(version_info):
|
def get_dirs(version_info):
|
||||||
return {
|
return {
|
||||||
|
|||||||
Reference in New Issue
Block a user