Improvements to the test runners#39628
Merged
cpuguy83 merged 1 commit intomoby:masterfrom Aug 1, 2019
Merged
Conversation
Member
Author
|
Overlooked a case where an integration dir has a .go but no test files.
|
faba62a to
8af1048
Compare
Member
Author
|
There we go, that should be good. |
8af1048 to
9b60d9d
Compare
Member
|
Looks like the windows machines aren't happy 😞 |
9b60d9d to
0816c35
Compare
Member
Author
|
Yay powershell quoting. I think this one will work. |
Member
|
Looks like RS1 is happy now, but RS5 not |
Member
Author
|
:( They both seem to be giving the same error... works on my Windows machine. |
7bd7e48 to
5a5b690
Compare
Member
Author
|
Yay, looks like Windows is good now. |
thaJeztah
reviewed
Jul 31, 2019
1. Use `go list` to get list of integration dirs to build. This means we do not need to have a valid `.go` in every subdirectory and also filters out other dirs like "bundles" which may have been created. 2. Add option to specify custom flags for integration and integration-cli. This is needed so both suites can be run AND set custom flags... since the cli suite does not support standard go flags. 3. Add options to skip an entire integration suite. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
5a5b690 to
abece9b
Compare
Member
|
Seems like a much cleaner approach! 👍 LGTM |
Member
Author
|
Thanks! |
This was referenced Aug 19, 2019
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
go listto get list of integration dirs to build. This means wedo not need to have a valid
.goin every subdirectory and alsofilters out other dirs like "bundles" which may have been created.
integration-cli. This is needed so both suites can be run AND set
custom flags... since the cli suite does not support standard go
flags.