refactor(agent): remove legacy in-process backend, rename harnesses pi_core/pi_agenta - #4833
Merged
Merged
GitHub Actions / Railway API Test Results
failed
Jun 25, 2026 in 0s
1 fail, 8 skipped, 653 pass in 2m 41s
662 tests 653 ✅ 2m 41s ⏱️
1 suites 8 💤
1 files 1 ❌
Results for commit 3cb0a64.
Annotations
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 0s]
Raw output
assert 0 == 1
self = <workflows.test_workflows_queries.TestWorkflowsQueries object at 0x7fd782999220>
authed_api = <function authed_api.<locals>._request at 0x7fd7825d0fe0>
mock_data = {'workflows': [{'flags': {'is_application': True, 'is_evaluator': False, 'is_snippet': False, 'is_skill': False, ...},...value3', '_marker': '0c5eb97c'}, 'name': 'Workflow fabac73e-e3e5-4db9-8211-67daf55076cc', ...}], '_marker': '0c5eb97c'}
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
Loading