atbetaflight/.travis.sh

8 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