Skip to content

feat(agent): versioned harness identity (slug + name) + bind builtin agent URI - #4829

Merged
mmabrouk merged 3 commits into
big-agentsfrom
feat/agent-contract-versioning-docs
Jun 25, 2026
Merged

feat(agent): versioned harness identity (slug + name) + bind builtin agent URI#4829
mmabrouk merged 3 commits into
big-agentsfrom
feat/agent-contract-versioning-docs

feat(agent): harness slug+name interface identity + bind builtin agen…

ee827bf
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
GitHub Actions / Railway API Test Results failed Jun 25, 2026 in 0s

1 fail, 8 skipped, 653 pass in 3m 12s

662 tests  ±0   653 ✅ ±0   3m 12s ⏱️ - 1m 38s
  1 suites ±0     8 💤 ±0 
  1 files   ±0     1 ❌ ±0 

Results for commit ee827bf. ± Comparison against earlier commit e68500a.

Annotations

Check warning on line 0 in oss.tests.pytest.acceptance.workflows.test_workflows_queries.TestWorkflowsQueries

See this annotation in the file changed.

@github-actions github-actions / Railway API Test Results

test_query_workflows_by_flags (oss.tests.pytest.acceptance.workflows.test_workflows_queries.TestWorkflowsQueries) failed

api/oss/tests/results/junit.xml [took 1s]
Raw output
assert 0 == 1
self = <workflows.test_workflows_queries.TestWorkflowsQueries object at 0x7f5b3b2cce90>
authed_api = <function authed_api.<locals>._request at 0x7f5b3af96d40>
mock_data = {'workflows': [{'flags': {'is_application': True, 'is_evaluator': False, 'is_snippet': False, 'is_skill': False, ...},...value3', '_marker': '50828215'}, 'name': 'Workflow 013fbb3c-2704-45dc-aa66-023dea528a3a', ...}], '_marker': '50828215'}

    def test_query_workflows_by_flags(
        self,
        authed_api,
        mock_data,
    ):
        marker = mock_data["_marker"]
    
        # ACT ------------------------------------------------------------------
        response = authed_api(
            "POST",
            "/workflows/query",
            json={
                "workflow": {
                    "flags": mock_data["workflows"][0]["flags"],
                    "tags": {"_marker": marker},
                },
            },
        )
        # ----------------------------------------------------------------------
    
        # ASSERT ---------------------------------------------------------------
        assert response.status_code == 200
        response = response.json()
>       assert response["count"] == 1
E       assert 0 == 1

oss/tests/pytest/acceptance/workflows/test_workflows_queries.py:258: AssertionError