Skip to content

Commit

Permalink
chore: Skip all execution workflow tests
Browse files Browse the repository at this point in the history
  • Loading branch information
whiterabbit1983 committed Dec 27, 2024
1 parent 23d042d commit 9ef620f
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion agents-api/tests/test_execution_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
EMBEDDING_SIZE: int = 1024


@skip
@test("workflow: evaluate step single")
async def _(
dsn=pg_dsn,
Expand Down Expand Up @@ -67,6 +68,7 @@ async def _(
raise ex


@skip
@test("workflow: evaluate step multiple")
async def _(
dsn=pg_dsn,
Expand Down Expand Up @@ -110,6 +112,7 @@ async def _(
assert result["hello"] == "world"


@skip
@test("workflow: variable access in expressions")
async def _(
dsn=pg_dsn,
Expand Down Expand Up @@ -153,6 +156,7 @@ async def _(
assert result["hello"] == data.input["test"]


@skip
@test("workflow: yield step")
async def _(
dsn=pg_dsn,
Expand Down Expand Up @@ -203,6 +207,7 @@ async def _(
assert result["hello"] == data.input["test"]


@skip
@test("workflow: sleep step")
async def _(
dsn=pg_dsn,
Expand Down Expand Up @@ -251,6 +256,7 @@ async def _(
assert result["hello"] == data.input["test"]


@skip
@test("workflow: return step direct")
async def _(
dsn=pg_dsn,
Expand Down Expand Up @@ -293,6 +299,7 @@ async def _(
assert result["value"] == data.input["test"]


@skip
@test("workflow: return step nested")
async def _(
dsn=pg_dsn,
Expand Down Expand Up @@ -342,6 +349,7 @@ async def _(
assert result["value"] == data.input["test"]


@skip
@test("workflow: log step")
async def _(
dsn=pg_dsn,
Expand Down Expand Up @@ -390,6 +398,7 @@ async def _(
assert result["hello"] == data.input["test"]


@skip
@test("workflow: log step expression fail")
async def _(
dsn=pg_dsn,
Expand Down Expand Up @@ -444,6 +453,7 @@ async def _(
assert result["hello"] == data.input["test"]


@skip
@test("workflow: system call - list agents")
async def _(
dsn=pg_dsn,
Expand Down Expand Up @@ -502,6 +512,7 @@ async def _(
assert all("id" in agent for agent in result)


@skip
@test("workflow: tool call api_call")
async def _(
dsn=pg_dsn,
Expand Down Expand Up @@ -633,6 +644,7 @@ async def _(
# assert num_retries >= 2


@skip
@test("workflow: tool call integration dummy")
async def _(
dsn=pg_dsn,
Expand Down Expand Up @@ -880,6 +892,7 @@ async def _(
# assert "for_each_step" in activities_scheduled


@skip
@test("workflow: if-else step")
async def _(
dsn=pg_dsn,
Expand Down Expand Up @@ -926,6 +939,7 @@ async def _(
assert result["hello"] in [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]


@skip
@test("workflow: switch step")
async def _(
dsn=pg_dsn,
Expand Down Expand Up @@ -981,6 +995,7 @@ async def _(
assert result["hello"] == "world"


@skip
@test("workflow: for each step")
async def _(
dsn=pg_dsn,
Expand Down Expand Up @@ -1026,6 +1041,7 @@ async def _(
assert result[0]["hello"] == "world"


@skip
@test("workflow: map reduce step")
async def _(
dsn=pg_dsn,
Expand Down Expand Up @@ -1072,7 +1088,7 @@ async def _(


for p in [1, 3, 5]:

@skip
@test(f"workflow: map reduce step parallel (parallelism={p})")
async def _(
dsn=pg_dsn,
Expand Down Expand Up @@ -1307,6 +1323,7 @@ async def _(
# assert result == "Hello, world!"


@skip
@test("workflow: set and get steps")
async def _(
dsn=pg_dsn,
Expand Down

0 comments on commit 9ef620f

Please sign in to comment.