mirror of
1
0
Fork 0

Merge branch 'bchretien/master'

This commit is contained in:
Anish Athalye 2016-01-18 04:16:04 -05:00
commit 38666c8937
2 changed files with 8 additions and 0 deletions

View File

@ -6,5 +6,7 @@ python:
- "3.4"
- "3.5"
sudo: false
script:
- ./test/test_travis

View File

@ -8,6 +8,12 @@ set -e
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
# Prevent execution outside of Travis CI builds
if [[ "${TRAVIS}" != true || "${CI}" != true ]]; then
echo "Error: `basename "$0"` should only be used on Travis"
exit 2
fi
# Travis runs do not rely on Vagrant
export USE_VAGRANT=false
export DOTBOT_EXEC="${BASEDIR}/bin/dotbot"