CI: enable missing tests (#29538)

old-commit-hash: 979c96167d5ba2f07a7e0dee7c059c3a2ee4757b
This commit is contained in:
Justin Newberry
2023-08-22 16:48:02 -07:00
committed by GitHub
parent ab4788cb3b
commit 1a29920369
5 changed files with 8 additions and 4 deletions

BIN
poetry.lock LFS generated

Binary file not shown.

View File

@@ -53,6 +53,7 @@ aiohttp = "*"
aiortc = "*"
casadi = "==3.6.3"
cffi = "*"
control = "*"
crcmod = "*"
cryptography = "*"
Cython = "*"

View File

View File

@@ -12,6 +12,7 @@ from openpilot.selfdrive.controls.lib.latcontrol_pid import LatControlPID
from openpilot.selfdrive.controls.lib.latcontrol_torque import LatControlTorque
from openpilot.selfdrive.controls.lib.latcontrol_angle import LatControlAngle
from openpilot.selfdrive.controls.lib.vehicle_model import VehicleModel
from selfdrive.navd.tests.test_map_renderer import gen_llk
class TestLatControl(unittest.TestCase):
@@ -27,13 +28,15 @@ class TestLatControl(unittest.TestCase):
CS = car.CarState.new_message()
CS.vEgo = 30
CS.steeringPressed = False
last_actuators = car.CarControl.Actuators.new_message()
params = log.LiveParametersData.new_message()
llk = gen_llk()
for _ in range(1000):
_, _, lac_log = controller.update(True, CS, CP, VM, params, last_actuators, True, 1, 0)
_, _, lac_log = controller.update(True, CS, VM, params, last_actuators, False, 1, 0, llk)
self.assertTrue(lac_log.saturated)

View File

@@ -38,7 +38,7 @@ class TestVehicleModel(unittest.TestCase):
# Compute yaw rate using direct computations
yr2 = self.VM.yaw_rate(sa, u, roll)
self.assertAlmostEqual(float(yr1), yr2)
self.assertAlmostEqual(float(yr1[0]), yr2)
def test_syn_ss_sol_simulate(self):
"""Verifies that dyn_ss_sol matches a simulation"""