forked from isaac-sim/IsaacLab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_cartpole_showcase_environments.py
More file actions
35 lines (25 loc) · 1.06 KB
/
Copy pathtest_cartpole_showcase_environments.py
File metadata and controls
35 lines (25 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright (c) 2022-2026, The Isaac Lab Project Developers (https://github.com/isaac-sim/IsaacLab/blob/main/CONTRIBUTORS.md).
# All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
"""Launch Isaac Sim Simulator first."""
from isaaclab.app import AppLauncher
# launch the simulator
app_launcher = AppLauncher(headless=True, enable_cameras=True)
simulation_app = app_launcher.app
"""Rest everything follows."""
import pytest
import isaaclab_tasks # noqa: F401
# Local imports should be imported last
from env_test_utils import _run_environments, setup_environment # isort: skip
@pytest.mark.parametrize("num_envs, device", [(2, "cuda"), (1, "cuda")])
@pytest.mark.parametrize(
"task_name",
setup_environment(
factory_envs=False, multi_agent=False, teleop_envs=False, cartpole_showcase_envs=True
),
)
@pytest.mark.isaacsim_ci
def test_cartpole_showcase_environments(task_name, num_envs, device):
# run cartpole showcase environments without stage in memory
_run_environments(task_name, device, num_envs, create_stage_in_memory=False)