Removed make deps from tests

This commit is contained in:
Eduard Urbach 2019-04-20 12:38:36 +09:00
parent 45f4d0a826
commit 1211cae561

View File

@ -40,7 +40,6 @@ before_script:
# script always run to completion (set +e). All of these code checks are must haves
# in a modern Go project.
script:
- make deps # Get dependencies. Allow this to fail because components cannot be found.
- make all # Build
- go test -v . # Run all the tests
# - go test -v -race ./... # Run all the tests with the race detector enabled