mcbain83
mcbain83

Reputation: 512

Explicitly specifying the main package to run tests for in golang with goconvey

How do I explicitly say with my go test command to run only tests for the main package and not others in my source directory.

At the moment it's working with $go test -v. But... I am using goconvey as well and it seems to be running recursively. According to this page https://github.com/smartystreets/goconvey/wiki/Profiles I have a file where I can pass arguments into the go test command. I know you can go test -v ./... for recursive or go test -c packagename/... but how do I just do it for the main?

Upvotes: 1

Views: 418

Answers (1)

Michael Whatcott
Michael Whatcott

Reputation: 5955

Profiles is one to accomplish this, but you can also specify a 'depth' for the runner:

$ goconvey -depth=0

A value of 0 limits the runner to the working directory.

Run goconvey -help for details.

Upvotes: 1

Related Questions