From bda953a2cb903750f26140ac115d1ea7bc060bad Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Thu, 13 Aug 2015 12:31:13 -0700 Subject: [PATCH] Removed conditional around create_db --- tests/boulder-start.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/boulder-start.sh b/tests/boulder-start.sh index 6ca9e577f..2ab97f53d 100755 --- a/tests/boulder-start.sh +++ b/tests/boulder-start.sh @@ -5,10 +5,6 @@ export GOPATH="${GOPATH:-/tmp/go}" go get -d github.com/letsencrypt/boulder cd $GOPATH/src/github.com/letsencrypt/boulder - -if [ "${TRAVIS}" == "true" ]; then - ./test/create_db.sh || die "unable to create the boulder database with test/create_db.sh" -fi - +./test/create_db.sh ./start.py & # Hopefully start.py bootstraps before integration test is started...