fix VisibleDeprecation Warning (#358)

* try coverage

* add python warning setting

* add random seed for test coverage
This commit is contained in:
Atsushi Sakai
2020-07-10 23:46:19 +09:00
committed by GitHub
parent 72c4a891b3
commit 4c5e3ccc9e
8 changed files with 23 additions and 6 deletions

View File

@@ -1,5 +1,6 @@
import os
import sys
import random
from unittest import TestCase
sys.path.append(os.path.dirname(os.path.abspath(__file__)) + "/../")
@@ -7,9 +8,10 @@ sys.path.append(os.path.dirname(os.path.abspath(__file__)) +
"/../PathPlanning/ClosedLoopRRTStar/")
try:
from PathPlanning.ClosedLoopRRTStar import closed_loop_rrt_star_car as m
except:
except ImportError:
raise
random.seed(12345)
print(__file__)