Skip to content
Merged
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: 10 additions & 0 deletions test/bot/test_browsing_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,16 @@ def test_stdout_without_final_result_marker_returned_as_is(self):
@pytest.mark.integration
@pytest.mark.docker
@pytest.mark.slow # Browser tests require Chromium installation and significant disk space
@pytest.mark.skip(
reason=(
"browser-use==0.5.4 does not declare pydantic-settings as a "
"dependency, so `pip install browser-use==0.5.4` inside the "
"sandbox never installs it, causing every browser command to fail "
"with ModuleNotFoundError: No module named 'pydantic_settings'. "
"Re-enable once browser-use.yaml pins pydantic-settings explicitly "
"or a fixed browser-use release is available."
)
)
class TestBrowsingBot:
"""Integration tests for BrowsingBot functionality."""

Expand Down
Loading