mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-02-16 10:15:09 -05:00
12 lines
247 B
Python
12 lines
247 B
Python
import conftest # Add root path to sys.path
|
|
from PathTracking.lqr_speed_steer_control import lqr_speed_steer_control as m
|
|
|
|
|
|
def test_1():
|
|
m.show_animation = False
|
|
m.main()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
conftest.run_this_test(__file__)
|