This is an automated email from the ASF dual-hosted git repository.

wenjin272 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-agents.git


The following commit(s) were added to refs/heads/main by this push:
     new 5e82159b [fix] Rename environment variables to avoid conflict with 
other tests.
5e82159b is described below

commit 5e82159b8d0d428a9068e9166edcacc30cda38da
Author: WenjinXie <[email protected]>
AuthorDate: Wed Apr 29 14:42:28 2026 +0800

    [fix] Rename environment variables to avoid conflict with other tests.
---
 .github/workflows/ci.yml                                              | 2 +-
 .../flink_agents/e2e_tests/e2e_tests_integration/agent_skills_test.py | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a7020454..92b00179 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -173,7 +173,7 @@ jobs:
         run: bash tools/start_ollama_server.sh
       - name: Run Python IT
         env:
-          DASHSCOPE_API_KEY: ${{ secrets.DASHSCOPE_API_KEY }}
+          ACTION_API_KEY: ${{ secrets.DASHSCOPE_API_KEY }}
         run: tools/ut.sh -p -e -f ${{ matrix.flink-version }}
 
   java_it_tests:
diff --git 
a/python/flink_agents/e2e_tests/e2e_tests_integration/agent_skills_test.py 
b/python/flink_agents/e2e_tests/e2e_tests_integration/agent_skills_test.py
index 261be27a..5c0780ef 100644
--- a/python/flink_agents/e2e_tests/e2e_tests_integration/agent_skills_test.py
+++ b/python/flink_agents/e2e_tests/e2e_tests_integration/agent_skills_test.py
@@ -53,8 +53,8 @@ current_dir = Path(__file__).parent
 
 PYTHON_PATH = sysconfig.get_paths()["purelib"]
 MODEL = "qwen3.6-plus"
-BASE_URL = "https://coding.dashscope.aliyuncs.com/v1";
-API_KEY = os.environ.get("DASHSCOPE_API_KEY")
+BASE_URL = os.environ.get("ACTION_BASE_URL", 
"https://coding.dashscope.aliyuncs.com/v1";)
+API_KEY = os.environ.get("ACTION_API_KEY")
 
 
 @dataclass

Reply via email to