diff --git a/node-hub/dora-mujoco/tests/test_dora_mujoco.py b/node-hub/dora-mujoco/tests/test_dora_mujoco.py new file mode 100644 index 00000000..8920c519 --- /dev/null +++ b/node-hub/dora-mujoco/tests/test_dora_mujoco.py @@ -0,0 +1,9 @@ +import pytest + + +def test_import_main(): + from dora_mujoco.main import main + + # Check that everything is working, and catch dora Runtime Exception as we're not running in a dora dataflow. + with pytest.raises(RuntimeError): + main()