diff --git a/Jenkinsfile b/Jenkinsfile index 0905abd6da..31095a619e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -208,6 +208,13 @@ node { step("onroad tests", "pytest selfdrive/test/test_onroad.py -s", [timeout: 60]), ]) }, + 'onroad tests': { + deviceStage("onroad", "tizi-needs-can", ["UNSAFE=1"], [ + step("build openpilot", "cd system/manager && ./build.py"), + step("check dirty", "release/check-dirty.sh"), + step("onroad tests", "pytest selfdrive/test/test_onroad.py -s", [timeout: 60]), + ]) + }, 'HW + Unit Tests': { deviceStage("tici-hardware", "tici-common", ["UNSAFE=1"], [ step("build", "cd system/manager && ./build.py"), diff --git a/selfdrive/test/test_onroad.py b/selfdrive/test/test_onroad.py index 0149653c84..3ec7b38e83 100644 --- a/selfdrive/test/test_onroad.py +++ b/selfdrive/test/test_onroad.py @@ -33,7 +33,7 @@ CPU usage budget TEST_DURATION = 25 LOG_OFFSET = 8 -MAX_TOTAL_CPU = 280. # total for all 8 cores +MAX_TOTAL_CPU = 287. # total for all 8 cores PROCS = { # Baseline CPU usage by process "selfdrive.controls.controlsd": 16.0,