We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d703c49 commit 13e172dCopy full SHA for 13e172d
tests/test_pure_pursuit.py
@@ -0,0 +1,11 @@
1
+from unittest import TestCase
2
+from PathTracking.pure_pursuit import pure_pursuit as m
3
+
4
+print("pure_pursuit test")
5
6
7
+class Test(TestCase):
8
9
+ def test1(self):
10
+ m.show_animation = False
11
+ m.main()
0 commit comments