We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86f40de commit 6eb3cf5Copy full SHA for 6eb3cf5
tests/integration/test_controllers.py
@@ -1,4 +1,3 @@
1
-import importlib
2
from pathlib import Path
3
4
import gymnasium
@@ -9,11 +8,8 @@
9
8
10
11
@pytest.mark.integration
12
-@pytest.mark.parametrize("controller_file", ["trajectory_controller.py", "ppo_controller.py"])
+@pytest.mark.parametrize("controller_file", ["trajectory_controller.py"])
13
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
-
17
config = load_config(Path(__file__).parents[2] / "config/level0.toml")
18
config.sim.gui = False
19
config.sim.physics = "analytical"
0 commit comments