diff options
author | insomniac <insomniacslk@users.noreply.github.com> | 2019-06-20 09:52:40 +0100 |
---|---|---|
committer | Pablo Mazzini <pmazzini@gmail.com> | 2019-06-20 09:52:40 +0100 |
commit | b4283850189193486e09713e2a1b505e4ce2d067 (patch) | |
tree | 088e3a5fe83ba0f7f65f0da5845fe9e49a73e879 /.travis/tests.sh | |
parent | 797593413f957bdc1ac7896a3cfc99333ec1bc00 (diff) |
Fix TravisCI build (#297)
Diffstat (limited to '.travis/tests.sh')
-rwxr-xr-x | .travis/tests.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis/tests.sh b/.travis/tests.sh index a3389fe..b48a3c2 100755 --- a/.travis/tests.sh +++ b/.travis/tests.sh @@ -6,6 +6,10 @@ set -e echo "" > coverage.txt +# show the network configuration. This can help troubleshooting integration +# tests. +ip a + for d in $(go list ./... | grep -v vendor); do go test -race -coverprofile=profile.out -covermode=atomic $d if [ -f profile.out ]; then |