diff --git a/regenerate.bash b/regenerate.bash index 71f7cdd0b..6b4b9c91e 100755 --- a/regenerate.bash +++ b/regenerate.bash @@ -4,5 +4,5 @@ # license that can be found in the LICENSE file. cd "$(git rev-parse --show-toplevel)" -go test -v -mod=vendor -timeout=60m -count=1 integration_test.go "$@" -regenerate +go test -v -timeout=60m -count=1 integration_test.go "$@" -regenerate exit $? diff --git a/release.bash b/release.bash index 1a140a3d9..66822efda 100755 --- a/release.bash +++ b/release.bash @@ -79,7 +79,7 @@ fi git commit -a -m "all: release $(version_string)" # Build release binaries. -go test -mod=vendor -timeout=60m -count=1 integration_test.go "$@" -buildRelease +go test -timeout=60m -count=1 integration_test.go "$@" -buildRelease # Create commit to start development after release. VERSION_PRERELEASE="${VERSION_PRERELEASE}.devel" # append ".devel" diff --git a/test.bash b/test.bash index 2db962157..7aafdb359 100755 --- a/test.bash +++ b/test.bash @@ -4,5 +4,5 @@ # license that can be found in the LICENSE file. cd "$(git rev-parse --show-toplevel)" -go test -v -mod=vendor -timeout=60m -count=1 integration_test.go -failfast "$@" +go test -v -timeout=60m -count=1 integration_test.go -failfast "$@" exit $?