Files
PythonRobotics/tests/test_stanley_controller.py
Atsushi Sakai a38da41baf Add code links to documentation and fix naming inconsistencies (#1213)
Added references to related Python functions in documentation for better navigation and usability. Corrected inconsistencies in module and test names to align with their respective directories and improve clarity.
2025-05-04 20:32:11 +09:00

12 lines
230 B
Python

import conftest # Add root path to sys.path
from PathTracking.stanley_control import stanley_control as m
def test1():
m.show_animation = False
m.main()
if __name__ == '__main__':
conftest.run_this_test(__file__)