From 629ec2a7d971e9fd3b23a773c442ca79c10fbfbc Mon Sep 17 00:00:00 2001 From: ShashwatPatil Date: Sat, 14 Jun 2025 19:14:33 +0530 Subject: [PATCH] added back the test file for dora-mujoco node --- node-hub/dora-mujoco/tests/test_dora_mujoco.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 node-hub/dora-mujoco/tests/test_dora_mujoco.py 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()