farmbot_os/scripts/run_travis_tests.sh

8 lines
174 B
Bash
Executable File

#!/bin/bash
export MIX_ENV=test
mix deps.get
mix travis_test || { echo 'Tests failed!' ; exit 1; }
if [[ "$TRAVIS_BRANCH" == "staging" ]]; then
SILENT=true make release
fi