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 dbd818b commit af74ebaCopy full SHA for af74eba
tests/unittests/tools/test_langchain_tool.py
@@ -12,13 +12,22 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
+import pytest
16
+
17
+# TODO: Re-enable this test after verifying LangchainTool and
18
+# LangGraphAgent against langchain's 1.0.0 release.
19
+pytest.skip(
20
+ allow_module_level=True,
21
+ reason="Langchain just made 1.0.0 release that breaks existing import.",
22
+)
23
24
25
from unittest.mock import MagicMock
26
27
from google.adk.tools.langchain_tool import LangchainTool
28
from langchain.tools import tool
29
from langchain_core.tools.structured import StructuredTool
30
from pydantic import BaseModel
-import pytest
31
32
33
@tool
0 commit comments