Skip to content

Commit 91f53e2

Browse files
authored
Fixes manager tests requiring sim (#2075)
# Description A recent change requires the manager based env to have a sim object. This update fixes the manager tests to initialize a sim variable in the env class. ## Type of change <!-- As you go through the list, delete the ones that are not applicable. --> - Bug fix (non-breaking change which fixes an issue) ## Checklist - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./isaaclab.sh --format` - [x] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already exists there <!-- As you go through the checklist above, you can mark something as done by putting an x character in it For example, - [x] I have done this task - [ ] I have not done this task -->
1 parent f2d5b33 commit 91f53e2

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

source/isaaclab/test/managers/test_event_manager.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@
2020
from collections import namedtuple
2121

2222
from isaaclab.managers import EventManager, EventTermCfg
23+
from isaaclab.sim import SimulationContext
2324
from isaaclab.utils import configclass
2425

25-
DummyEnv = namedtuple("ManagerBasedRLEnv", ["num_envs", "dt", "device", "dummy1", "dummy2"])
26+
DummyEnv = namedtuple("ManagerBasedRLEnv", ["num_envs", "dt", "device", "sim", "dummy1", "dummy2"])
2627
"""Dummy environment for testing."""
2728

2829

@@ -56,8 +57,10 @@ def setUp(self) -> None:
5657
# create dummy tensors
5758
dummy1 = torch.zeros((num_envs, 2), device=device)
5859
dummy2 = torch.zeros((num_envs, 10), device=device)
60+
# create sim
61+
sim = SimulationContext()
5962
# create dummy environment
60-
self.env = DummyEnv(num_envs, 0.01, device, dummy1, dummy2)
63+
self.env = DummyEnv(num_envs, 0.01, device, sim, dummy1, dummy2)
6164

6265
def test_str(self):
6366
"""Test the string representation of the event manager."""

source/isaaclab/test/managers/test_observation_manager.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
from collections import namedtuple
2121

2222
from isaaclab.managers import ManagerTermBase, ObservationGroupCfg, ObservationManager, ObservationTermCfg
23+
from isaaclab.sim import SimulationContext
2324
from isaaclab.utils import configclass, modifiers
2425

2526

@@ -98,9 +99,11 @@ def setUp(self) -> None:
9899
self.dt = 0.01
99100
self.num_envs = 20
100101
self.device = "cuda:0"
102+
# set up sim
103+
self.sim = SimulationContext()
101104
# create dummy environment
102-
self.env = namedtuple("ManagerBasedEnv", ["num_envs", "device", "data", "dt"])(
103-
self.num_envs, self.device, MyDataClass(self.num_envs, self.device), self.dt
105+
self.env = namedtuple("ManagerBasedEnv", ["num_envs", "device", "data", "dt", "sim"])(
106+
self.num_envs, self.device, MyDataClass(self.num_envs, self.device), self.dt, self.sim
104107
)
105108

106109
def test_str(self):

source/isaaclab/test/managers/test_recorder_manager.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626

2727
from isaaclab.envs import ManagerBasedEnv
2828
from isaaclab.managers import DatasetExportMode, RecorderManager, RecorderManagerBaseCfg, RecorderTerm, RecorderTermCfg
29+
from isaaclab.sim import SimulationContext
2930
from isaaclab.utils import configclass
3031

3132

@@ -84,8 +85,9 @@ class DummyTerminationManager:
8485
active_terms = []
8586

8687
dummy_termination_manager = DummyTerminationManager()
87-
return namedtuple("ManagerBasedEnv", ["num_envs", "device", "cfg", "termination_manager"])(
88-
20, device, dict(), dummy_termination_manager
88+
sim = SimulationContext()
89+
return namedtuple("ManagerBasedEnv", ["num_envs", "device", "sim", "cfg", "termination_manager"])(
90+
20, device, sim, dict(), dummy_termination_manager
8991
)
9092

9193

source/isaaclab/test/managers/test_reward_manager.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
from collections import namedtuple
1818

1919
from isaaclab.managers import RewardManager, RewardTermCfg
20+
from isaaclab.sim import SimulationContext
2021
from isaaclab.utils import configclass
2122

2223

@@ -40,7 +41,8 @@ class TestRewardManager(unittest.TestCase):
4041
"""Test cases for various situations with reward manager."""
4142

4243
def setUp(self) -> None:
43-
self.env = namedtuple("ManagerBasedRLEnv", ["num_envs", "dt", "device"])(20, 0.1, "cpu")
44+
sim = SimulationContext()
45+
self.env = namedtuple("ManagerBasedRLEnv", ["num_envs", "dt", "device", "sim"])(20, 0.1, "cpu", sim)
4446

4547
def test_str(self):
4648
"""Test the string representation of the reward manager."""

0 commit comments

Comments
 (0)