ConstructTraining / source /isaaclab_tasks /test /test_factory_environments.py
gerlachje's picture
Upload folder using huggingface_hub
406662d verified
# 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 _check_random_actions, setup_environment # isort: skip
@pytest.mark.parametrize("num_envs, device", [(32, "cuda"), (1, "cuda")])
@pytest.mark.parametrize("task_name", setup_environment(factory_envs=True, multi_agent=False))
@pytest.mark.isaacsim_ci
def test_factory_environments(task_name, num_envs, device):
"""Run all factory environments and check environments return valid signals."""
print(f">>> Running test for environment: {task_name}")
_check_random_actions(task_name, device, num_envs)
print(f">>> Closing environment: {task_name}")
print("-" * 80)