Skip to content

Commit 419d4ab

Browse files
committed
revert test
1 parent 867391f commit 419d4ab

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

isaaclab_arena/tests/test_eval_runner.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def run_eval_runner_and_check_no_failures(jobs_config_path: str, headless: bool
6060
raise AssertionError(f"The following jobs failed: {', '.join(failed_jobs)}\nAll job statuses: {job_statuses}")
6161

6262

63-
@pytest.mark.skip(reason="Skipping because of CI stalling")
63+
@pytest.mark.with_subprocess
6464
def test_eval_runner_two_jobs_zero_action(tmp_path):
6565
"""Test eval_runner with 2 jobs using zero_action policy on different objects."""
6666
jobs = [
@@ -93,7 +93,7 @@ def test_eval_runner_two_jobs_zero_action(tmp_path):
9393
run_eval_runner_and_check_no_failures(temp_config_path)
9494

9595

96-
@pytest.mark.skip(reason="Skipping because of CI stalling")
96+
@pytest.mark.with_subprocess
9797
def test_eval_runner_multiple_environments(tmp_path):
9898
"""Test eval_runner with jobs across different environments."""
9999
jobs = [
@@ -126,7 +126,7 @@ def test_eval_runner_multiple_environments(tmp_path):
126126
run_eval_runner_and_check_no_failures(temp_config_path)
127127

128128

129-
@pytest.mark.skip(reason="Skipping because of CI stalling")
129+
@pytest.mark.with_subprocess
130130
def test_eval_runner_different_embodiments(tmp_path):
131131
"""Test eval_runner with jobs using different embodiments."""
132132
jobs = [
@@ -146,7 +146,7 @@ def test_eval_runner_different_embodiments(tmp_path):
146146
"arena_env_args": {
147147
"environment": "kitchen_pick_and_place",
148148
"object": "tomato_soup_can",
149-
"embodiment": "franka_ik",
149+
"embodiment": "franka",
150150
},
151151
"num_steps": NUM_STEPS,
152152
"policy_type": "zero_action",
@@ -159,15 +159,15 @@ def test_eval_runner_different_embodiments(tmp_path):
159159
run_eval_runner_and_check_no_failures(temp_config_path)
160160

161161

162-
@pytest.mark.skip(reason="Skipping because of CI stalling")
162+
@pytest.mark.with_subprocess
163163
def test_eval_runner_from_existing_config():
164164
"""Test eval_runner using the zero_action_jobs_config.json and verify no jobs failed."""
165165
config_path = f"{TestConstants.arena_environments_dir}/eval_jobs_configs/zero_action_jobs_config.json"
166166
assert os.path.exists(config_path), f"Config file not found: {config_path}"
167167
run_eval_runner_and_check_no_failures(config_path)
168168

169169

170-
@pytest.mark.skip(reason="Skipping because of CI stalling")
170+
@pytest.mark.with_subprocess
171171
def test_eval_runner_enable_cameras(tmp_path):
172172
"""Test eval_runner with enable_cameras set to true."""
173173
jobs = [
@@ -176,7 +176,7 @@ def test_eval_runner_enable_cameras(tmp_path):
176176
"arena_env_args": {
177177
"environment": "kitchen_pick_and_place",
178178
"object": "cracker_box",
179-
"embodiment": "franka_ik",
179+
"embodiment": "franka",
180180
},
181181
"num_steps": NUM_STEPS,
182182
"policy_type": "zero_action",
@@ -188,7 +188,7 @@ def test_eval_runner_enable_cameras(tmp_path):
188188
"enable_cameras": True,
189189
"environment": "kitchen_pick_and_place",
190190
"object": "cracker_box",
191-
"embodiment": "franka_ik",
191+
"embodiment": "franka",
192192
},
193193
"num_steps": NUM_STEPS,
194194
"policy_type": "zero_action",

0 commit comments

Comments
 (0)