-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): bump up go version, add ua to ga #179
Conversation
Signed-off-by: Abhinandan Purkait <[email protected]>
@@ -28,5 +28,5 @@ go build -o $TEMPDIR/maya || exit 1 | |||
echo "--> Running tests" | |||
GOBIN="`which go`" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -28,5 +28,5 @@ go build -o $TEMPDIR/maya || exit 1 | |||
echo "--> Running tests" | |||
GOBIN="`which go`" | |||
PATH=$TEMPDIR:$PATH \ | |||
$GOBIN test ${GOTEST_FLAGS:--cover -timeout=900s} $($GOBIN list ./... | grep -v 'vendor\|pkg/apis\|pkg/generated\|tests') | |||
$GOBIN test ${GOTEST_FLAGS:--cover -timeout=900s} $($GOBIN list ./... | grep -v 'pkg/apis\|pkg/generated\|tests') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -28,5 +28,5 @@ go build -o $TEMPDIR/maya || exit 1 | |||
echo "--> Running tests" | |||
GOBIN="`which go`" | |||
PATH=$TEMPDIR:$PATH \ | |||
$GOBIN test ${GOTEST_FLAGS:--cover -timeout=900s} $($GOBIN list ./... | grep -v 'vendor\|pkg/apis\|pkg/generated\|tests') | |||
$GOBIN test ${GOTEST_FLAGS:--cover -timeout=900s} $($GOBIN list ./... | grep -v 'pkg/apis\|pkg/generated\|tests') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -17,7 +17,7 @@ | |||
set -e | |||
echo "" > coverage.txt | |||
|
|||
for d in $(go list ./... | grep -v 'vendor\|pkg/apis\|pkg/client\|tests'); do | |||
for d in $(go list ./... | grep -v 'pkg/apis\|pkg/client\|tests'); do | |||
#TODO - Include -race while creating the coverage profile. | |||
go test -coverprofile=profile.out -covermode=atomic $d |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No description provided.