Files
PythonRobotics/tests/test_n_joint_arm_to_point_control.py
Atsushi Sakai 98f9b22465 add main script for missing tests (#461)
* add main script for missing tests

* Fix CodeQL warning
2021-01-16 16:07:28 +09:00

16 lines
301 B
Python

import conftest # Add root path to sys.path
from ArmNavigation.n_joint_arm_to_point_control\
import n_joint_arm_to_point_control as m
import random
random.seed(12345)
def test1():
m.show_animation = False
m.animation()
if __name__ == '__main__':
conftest.run_this_test(__file__)