-
-
Notifications
You must be signed in to change notification settings - Fork 287
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
feat(gexec) Add CompileTest functions. Close #410 #411
Conversation
I changed name of functions of #410. I suggested |
Thanks to the last commit, |
Adds following methods: - CompileTest(packagePath string, args ...string) (compiledPath string, err error) - CompileTestWithEnvironment(packagePath string, env []string, args ...string) (compiledPath string, err error) - CompileTestIn(gopath string, packagePath string, args ...string) (compiledPath string, err error) Signed-off-by: Pierre Péronnet <[email protected]>
This solve the issue in test where suite scoped firefly binary was removed by CleanupBuildArtifacts() in build_test.go Signed-off-by: Pierre Péronnet <[email protected]>
Adds following methods: - GetAndCompileTest(packagePath string, args ...string) (compiledPath string, err error) - GetAndCompileTestWithEnvironment(packagePath string, env []string, args ...string) (compiledPath string, err error) - GetAndCompileTestIn(gopath string, packagePath string, args ...string) (compiledPath string, err error) Signed-off-by: Pierre Péronnet <[email protected]>
ping @onsi |
whoops sorry! thanks for the ping (and the code!) - will take a look today. |
I've had a very cursory look at this and did have two thoughts (which are very much thoughts rather than objections):
|
Hello @blgm, Thank you for taking care of my PR 👍
|
Thanks @holyhope - I expect the $GOPATH stuff will need some attention at some point. For now I'm happy to pull this in as is. |
Adds followinf methods:
Signed-off-by: Pierre Péronnet [email protected]