mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-10 05:28:07 -05:00
19 lines
347 B
Python
19 lines
347 B
Python
import conftest # Add root path to sys.path
|
|
|
|
from PathTracking.model_predictive_speed_and_steer_control \
|
|
import model_predictive_speed_and_steer_control as m
|
|
|
|
|
|
def test_1():
|
|
m.show_animation = False
|
|
m.main()
|
|
|
|
|
|
def test_2():
|
|
m.show_animation = False
|
|
m.main2()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
conftest.run_this_test(__file__)
|