Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions tests/unittests/tools/test_bash_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,20 @@
# limitations under the License.

import asyncio
import resource
import signal
import sys
from unittest import mock

import pytest

if sys.platform == "win32":
pytest.skip("bash tool tests require Unix resource module", allow_module_level=True)

import resource

from google.adk.tools import bash_tool
from google.adk.tools import tool_context
from google.adk.tools.tool_confirmation import ToolConfirmation
import pytest


@pytest.fixture
Expand Down
Loading