mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-26 16:48:10 -05:00
13 lines
272 B
Python
13 lines
272 B
Python
import conftest # Add root path to sys.path
|
|
from ArmNavigation.two_joint_arm_to_point_control \
|
|
import two_joint_arm_to_point_control as m
|
|
|
|
|
|
def test1():
|
|
m.show_animation = False
|
|
m.animation()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
conftest.run_this_test(__file__)
|