Skip to content

ci(agent): build and test sandbox-agent images - #4789

Closed
mmabrouk wants to merge 1 commit into
chore/sandbox-agent-corefrom
ci/sandbox-agent-image
Closed

ci(agent): build and test sandbox-agent images#4789
mmabrouk wants to merge 1 commit into
chore/sandbox-agent-corefrom
ci/sandbox-agent-image

ci(agent): build and test sandbox-agent images

08aaddd
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
GitHub Actions / Application API Unit Test Results failed Jun 23, 2026 in 0s

1 fail, 877 pass in 22s

878 tests   877 ✅  22s ⏱️
  1 suites    0 💤
  1 files      1 ❌

Results for commit 08aaddd.

Annotations

Check warning on line 0 in oss.tests.pytest.unit.services.test_db_manager

See this annotation in the file changed.

@github-actions github-actions / Application API Unit Test Results

test_get_default_workspace_id_prefers_owner_membership (oss.tests.pytest.unit.services.test_db_manager) failed

api/oss/tests/results/junit.xml [took 0s]
Raw output
AssertionError: assert 'ad1bac7d-4ec...-bfa38b09edcd' == '1de91d60-940...-452fe983f95d'
  
  - 1de91d60-940b-41c1-bf1c-452fe983f95d
  + ad1bac7d-4ec6-4c8e-b63a-bfa38b09edcd
monkeypatch = <_pytest.monkeypatch.MonkeyPatch object at 0x7fe4dcaf0670>

    @pytest.mark.asyncio
    async def test_get_default_workspace_id_prefers_owner_membership(monkeypatch):
        owner_workspace_id = uuid4()
        editor_workspace_id = uuid4()
    
        _patch_core_session(
            monkeypatch,
            [
                SimpleNamespace(
                    workspace_id=editor_workspace_id,
                    role="editor",
                    created_at=datetime(2026, 4, 9, tzinfo=timezone.utc),
                ),
                SimpleNamespace(
                    workspace_id=owner_workspace_id,
                    role="owner",
                    created_at=datetime(2026, 4, 10, tzinfo=timezone.utc),
                ),
            ],
        )
    
        workspace_id = await db_manager.get_default_workspace_id(str(uuid4()))
    
>       assert workspace_id == str(owner_workspace_id)
E       AssertionError: assert 'ad1bac7d-4ec...-bfa38b09edcd' == '1de91d60-940...-452fe983f95d'
E         
E         - 1de91d60-940b-41c1-bf1c-452fe983f95d
E         + ad1bac7d-4ec6-4c8e-b63a-bfa38b09edcd

oss/tests/pytest/unit/services/test_db_manager.py:80: AssertionError