1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 08:15:30 +03:00
betaflight/.travis.sh
2015-01-26 15:27:11 +01:00

7 lines
161 B
Bash
Executable file

#!/bin/bash
# A hacky way of running the unit tests at the same time as the normal builds.
if [ $RUNTESTS ] ; then
cd ./src/test && make test
else
make -j2
fi