From cd62f771fc9d3350290ce5aadc8c6c8d4ca78432 Mon Sep 17 00:00:00 2001 From: gagb Date: Wed, 4 Dec 2024 14:19:03 -0800 Subject: [PATCH] Add new poe command and script --- python/packages/autogen-agentchat/pyproject.toml | 1 + python/packages/autogen-agentchat/run-integ-test.sh | 1 + 2 files changed, 2 insertions(+) create mode 100644 python/packages/autogen-agentchat/run-integ-test.sh diff --git a/python/packages/autogen-agentchat/pyproject.toml b/python/packages/autogen-agentchat/pyproject.toml index ff3df62052e5..56629b3413c3 100644 --- a/python/packages/autogen-agentchat/pyproject.toml +++ b/python/packages/autogen-agentchat/pyproject.toml @@ -40,3 +40,4 @@ include = "../../shared_tasks.toml" [tool.poe.tasks] test = "pytest -n auto" +integ-test = "sh run-integ-test.sh" \ No newline at end of file diff --git a/python/packages/autogen-agentchat/run-integ-test.sh b/python/packages/autogen-agentchat/run-integ-test.sh new file mode 100644 index 000000000000..2fcee7113d17 --- /dev/null +++ b/python/packages/autogen-agentchat/run-integ-test.sh @@ -0,0 +1 @@ +echo "Hello World" \ No newline at end of file