Files
PythonRobotics/tests/test_rocket_powered_landing.py
Atsushi Sakai 98f9b22465 add main script for missing tests (#461)
* add main script for missing tests

* Fix CodeQL warning
2021-01-16 16:07:28 +09:00

15 lines
323 B
Python

import conftest # Add root path to sys.path
import sys
if 'cvxpy' in sys.modules: # pragma: no cover
from AerialNavigation.rocket_powered_landing import rocket_powered_landing as m
def test1():
m.show_animation = False
m.main()
if __name__ == '__main__':
conftest.run_this_test(__file__)