Skip to content

Commit f13d2de

Browse files
committed
test for appveyor
1 parent 6da2a5a commit f13d2de

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

tests/test_model_predictive_speed_and_steer_control.py

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,15 @@
22

33
import sys
44
if 'cvxpy' not in sys.modules:
5-
return
5+
sys.path.append("./PathTracking/model_predictive_speed_and_steer_control/")
66

7-
sys.path.append("./PathTracking/model_predictive_speed_and_steer_control/")
7+
from PathTracking.model_predictive_speed_and_steer_control import model_predictive_speed_and_steer_control as m
88

9-
from PathTracking.model_predictive_speed_and_steer_control import model_predictive_speed_and_steer_control as m
9+
print(__file__)
1010

11-
print(__file__)
11+
class Test(TestCase):
1212

13-
14-
class Test(TestCase):
15-
16-
def test1(self):
17-
m.show_animation = False
18-
m.main()
19-
m.main2()
13+
def test1(self):
14+
m.show_animation = False
15+
m.main()
16+
m.main2()

0 commit comments

Comments
 (0)