From eaef70d9ed3cbe3e905ac9633eda04f50e0c6f14 Mon Sep 17 00:00:00 2001 From: Reason-Wang Date: Tue, 5 May 2026 20:49:37 +0000 Subject: [PATCH 1/3] Update dependency --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index c6e3e35..2606f52 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,6 +40,7 @@ dependencies = [ "ray", "openai", "enroot-py", + "omegaconf", "vllm==0.19.0", "termcolor", "tenacity", From 4dcfc82ae9777003eb3a571e0ae9fc81c0bd87fc Mon Sep 17 00:00:00 2001 From: Reason-Wang Date: Tue, 5 May 2026 21:19:11 +0000 Subject: [PATCH 2/3] Ignore heavy tests for CI --- .github/workflows/cpu_tests.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/cpu_tests.yml b/.github/workflows/cpu_tests.yml index 4cbc7a3..c9b945c 100644 --- a/.github/workflows/cpu_tests.yml +++ b/.github/workflows/cpu_tests.yml @@ -16,9 +16,8 @@ jobs: python-version: ["3.12"] test-file: - tests/unit/envs/ - # - tests/unit/envs/test_webshop_text_env.py # TODO: add minimal variant of the webshop docker image - tests/unit/rewards/ - - tests/unit/tools/ + - tests/unit/tools/ --ignore=tests/unit/tools/test_webshop_tools.py --ignore=tests/unit/tools/test_scienceworld_tool.py - tests/unit/resources/ # - test/unit/agents/ # TODO: recheck this From 9bcf76778c09993685fd28e7a43bf91cdeeae78b Mon Sep 17 00:00:00 2001 From: Reason-Wang Date: Tue, 5 May 2026 21:41:40 +0000 Subject: [PATCH 3/3] Ignore heavy tests for CI --- .github/workflows/cpu_tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cpu_tests.yml b/.github/workflows/cpu_tests.yml index c9b945c..ac39612 100644 --- a/.github/workflows/cpu_tests.yml +++ b/.github/workflows/cpu_tests.yml @@ -15,9 +15,9 @@ jobs: matrix: python-version: ["3.12"] test-file: - - tests/unit/envs/ - - tests/unit/rewards/ - - tests/unit/tools/ --ignore=tests/unit/tools/test_webshop_tools.py --ignore=tests/unit/tools/test_scienceworld_tool.py + - tests/unit/envs/ --ignore=tests/unit/envs/test_scienceworld_env.py + - tests/unit/rewards/ --ignore=tests/unit/rewards/swe/ + - tests/unit/tools/ --ignore=tests/unit/tools/test_webshop_tool.py --ignore=tests/unit/tools/test_scienceworld_tool.py - tests/unit/resources/ # - test/unit/agents/ # TODO: recheck this