Skip to content

Commit 6eb3cf5

Browse files
committed
Remove PPO controller from tests
1 parent 86f40de commit 6eb3cf5

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tests/integration/test_controllers.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import importlib
21
from pathlib import Path
32

43
import gymnasium
@@ -9,11 +8,8 @@
98

109

1110
@pytest.mark.integration
12-
@pytest.mark.parametrize("controller_file", ["trajectory_controller.py", "ppo_controller.py"])
11+
@pytest.mark.parametrize("controller_file", ["trajectory_controller.py"])
1312
def test_controllers(controller_file: str):
14-
if controller_file == "ppo_controller.py" and not importlib.util.find_spec("stable_baselines3"):
15-
pytest.skip("Requires the stable baselines3 library")
16-
1713
config = load_config(Path(__file__).parents[2] / "config/level0.toml")
1814
config.sim.gui = False
1915
config.sim.physics = "analytical"

0 commit comments

Comments
 (0)