mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-14 16:57:58 -05:00
16 lines
372 B
Python
16 lines
372 B
Python
from unittest import TestCase
|
|
|
|
import sys
|
|
|
|
if 'cvxpy' in sys.modules: # pragma: no cover
|
|
sys.path.append("./AerialNavigation/rocket_powered_landing/")
|
|
|
|
from AerialNavigation.rocket_powered_landing import rocket_powered_landing as m
|
|
print(__file__)
|
|
|
|
class Test(TestCase):
|
|
|
|
def test1(self):
|
|
m.show_animation = False
|
|
m.main()
|