remove travis test

This commit is contained in:
Atsushi Sakai
2018-01-13 10:29:39 -08:00
parent 2c3a87a296
commit a77ef77da7
2 changed files with 0 additions and 18 deletions

View File

@@ -5,9 +5,6 @@ install:
- "pip install scipy"
- "pip install numpy"
- "pip install matplotlib"
- "git clone https://github.com/ghliu/pyReedsShepp"
- "cd ./pyReedsShepp"
- "sudo python setup.py install"
script:
- python --version
- python -m unittest discover tests

View File

@@ -1,15 +0,0 @@
from unittest import TestCase
import sys
sys.path.append("./PathPlanning/RRTStarReedsShepp/")
from PathPlanning.RRTStarReedsShepp import rrt_star_reeds_shepp as m
print(__file__)
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()