Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
maxime-desroches committed Oct 6, 2024
1 parent 11ed6c6 commit edb12ab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ def deviceStage(String stageName, String deviceType, List extra_env, def steps)
}
steps.each { item ->
if (branch != "master" && item.size() == 3 && !hasPathChanged(item[2])) {
println "No changes in ${item[2]}. Skipping ${item[0]}"
return;
} else {
device(device_ip, item[0], item[1])
Expand Down Expand Up @@ -231,7 +232,7 @@ node {
["build openpilot", "cd system/manager && ./build.py"],
["test pandad loopback", "SINGLE_PANDA=1 pytest selfdrive/pandad/tests/test_pandad_loopback.py"],
["test pandad spi", "pytest selfdrive/pandad/tests/test_pandad_spi.py"],
["test pandad", "pytest selfdrive/pandad/tests/test_pandad.py"],
["test pandad", "pytest selfdrive/pandad/tests/test_pandad.py", ["something/", "selfdrive/wow/"]],
["test amp", "pytest system/hardware/tici/tests/test_amplifier.py"],
["test hw", "pytest system/hardware/tici/tests/test_hardware.py"],
["test qcomgpsd", "pytest system/qcomgpsd/tests/test_qcomgpsd.py"],
Expand Down

0 comments on commit edb12ab

Please sign in to comment.