Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ pipeline {
["build", "scons -j4"],
["flash", "cd scripts/ && ./reflash_internal_panda.py"],
["flash jungle", "cd board/jungle && ./flash.py --all"],
["test", "cd tests/hitl && HW_TYPES=10 pytest --durations=0 2*.py [5-9]*.py"],
["test", "cd tests/hitl && pytest --durations=0 *.py"],
])
}
}
Expand All @@ -121,7 +121,7 @@ pipeline {
["build", "scons -j4"],
["flash", "cd scripts/ && ./reflash_internal_panda.py"],
["flash jungle", "cd board/jungle && ./flash.py --all"],
["test", "cd tests/hitl && HW_TYPES=9 pytest --durations=0 2*.py [5-9]*.py"],
["test", "cd tests/hitl && pytest --durations=0 *.py"],
])
}
}
Expand Down
95 changes: 0 additions & 95 deletions tests/hitl/1_program.py

This file was deleted.

3 changes: 0 additions & 3 deletions tests/hitl/3_usb.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
from panda import Panda
from panda.tests.hitl.helpers import time_many_sends

pytestmark = [
pytest.mark.test_panda_types((Panda.HW_TYPE_RED_PANDA, ))
]

def test_can_loopback(p):
p.set_safety_mode(CarParams.SafetyModel.allOutput)
Expand Down
4 changes: 0 additions & 4 deletions tests/hitl/5_spi.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@
from panda import Panda, PandaDFU
from panda.python.spi import SpiDevice, PandaProtocolMismatch, PandaSpiNackResponse

pytestmark = [
pytest.mark.test_panda_types((Panda.HW_TYPE_TRES, ))
]

@pytest.mark.skip("doesn't work, bootloader seems to ignore commands once it sees junk")
def test_dfu_with_spam(p):
dfu_serial = p.get_dfu_serial()
Expand Down
Loading