aboutsummaryrefslogtreecommitdiffstats
path: root/travis.sh
blob: 7de52bc3ef4fb856670feac4a1b507b137750770 (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/bash

set -e

TEST_DEPS=$(go list -f '{{.TestImports}} {{.XTestImports}}' github.com/ethereum/go-ethereum/... | sed -e 's/\[//g' | sed -e 's/\]//g')
if [ "$TEST_DEPS" ]; then
  go get -race $TEST_DEPS
fi