mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-23 23:12:07 +08:00
2c0cc6103a
old-commit-hash: daf54ad54d
9 lines
287 B
Bash
Executable File
9 lines
287 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
docker build -t tmppilot -f Dockerfile.openpilot .
|
|
|
|
docker run --rm \
|
|
-v "$(pwd)"/selfdrive/test/tests/plant/out:/tmp/openpilot/selfdrive/test/tests/plant/out \
|
|
tmppilot /bin/sh -c 'cd /tmp/openpilot/selfdrive/test/tests/plant && OPTEST=1 ./test_longitudinal.py'
|