Files
PythonRobotics/tests/test_LQR_planner.py
Atsushi Sakai 76b0d04a3c using pathlib based local module import (#722)
* using pathlib based local module import

* remove unused import
2022-09-11 07:21:37 +09:00

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__)