Skip to content
This repository was archived by the owner on Nov 1, 2017. It is now read-only.

Commit a0eb912

Browse files
committed
Don't run bootstrap if on Travis
This conflicts with Travis’ own caching strategy
1 parent d8e8a05 commit a0eb912

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

script/test

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ export RACK_ROOT=$(cd "$(dirname $0)"/.. && pwd)
1313

1414
export RAILS_ENV="test" RACK_ENV="test"
1515

16-
script/bootstrap
16+
if [ -z "$TRAVIS" ]; then
17+
script/bootstrap
18+
fi
1719

1820
echo "===> Running tests..."
1921

0 commit comments

Comments
 (0)