mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-14 10:48:04 -05:00
12 lines
222 B
Python
12 lines
222 B
Python
import conftest # Add root path to sys.path
|
|
from PathPlanning.LQRPlanner import lqr_planner as m
|
|
|
|
|
|
def test_1():
|
|
m.SHOW_ANIMATION = False
|
|
m.main()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
conftest.run_this_test(__file__)
|