| # 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.""" | |
| import sys | |
| # Import pinocchio in the main script to force the use of the dependencies | |
| # installed by IsaacLab and not the one installed by Isaac Sim. | |
| # pinocchio is required by the Pink IK controller | |
| if sys.platform != "win32": | |
| import pinocchio # noqa: F401 | |
| from isaaclab.app import AppLauncher | |
| # launch the simulator with specific settings for teddy bear environment | |
| app_launcher = AppLauncher( | |
| headless=True, enable_cameras=False, kit_args='--/app/extensions/excluded=["omni.usd.metrics.assembler.ui"]' | |
| ) | |
| 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 # isort: skip | |
| def test_lift_teddy_bear_environment(num_envs, device): | |
| """Test the Isaac-Lift-Teddy-Bear-Franka-IK-Abs-v0 environment in isolation.""" | |
| task_name = "Isaac-Lift-Teddy-Bear-Franka-IK-Abs-v0" | |
| # Try to run the environment with specific settings for this problematic case | |
| try: | |
| _run_environments(task_name, device, num_envs, create_stage_in_memory=False) | |
| except Exception as e: | |
| # If it still fails, skip the test with a descriptive message | |
| pytest.skip(f"Isaac-Lift-Teddy-Bear-Franka-IK-Abs-v0 environment failed to load: {e}") | |