Files
PythonRobotics/tests/test_rrt_dubins.py
Atsushi Sakai 58b13e4253 try to fix test
2019-02-01 22:12:54 +09:00

21 lines
369 B
Python

from unittest import TestCase
import sys
sys.path.append("./PathPlanning/RRTDubins/")
sys.path.append("./PathPlanning/DubinsPath/")
try:
from PathPlanning.RRTDubins import rrt_dubins as m
# from RRTDubins import rrt_dubins as m
except:
raise
print(__file__)
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()