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