update run_docker_tests.sh

albatross
Adeeb Shihadeh 2020-06-04 14:27:54 -07:00
parent 966e2d4154
commit 7db4e5bd05
1 changed files with 4 additions and 3 deletions

View File

@ -1,15 +1,16 @@
#!/bin/bash
set -e
# NOTE: this may be not an up-to-date list of tests and checks, see .github/workflows/test.yaml for the current list of tests
SETUP="cd /tmp/openpilot && "
BUILD="cd /tmp/openpilot && scons -c && scons -j$(nproc) && "
RUN="docker run --shm-size 1G --rm tmppilot /bin/bash -c"
docker build -t tmppilot -f Dockerfile.openpilot .
$RUN "$SETUP cd /tmp/openpilot/selfdrive/test/ && ./test_fingerprints.py"
$RUN "$SETUP ./flake8_openpilot.sh"
$RUN "$SETUP ./pylint_openpilot.sh"
$RUN "$SETUP cd selfdrive/test/ && ./test_fingerprints.py"
$RUN "$SETUP git init && git add -A && pre-commit run --all"
$RUN "$BUILD python -m unittest discover common && \
python -m unittest discover opendbc/can && \
python -m unittest discover selfdrive/boardd && \