-
Notifications
You must be signed in to change notification settings - Fork 116
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
Add a way to select the stream under test in system test runner #187
Add a way to select the stream under test in system test runner #187
Conversation
This provides a means to select a stream to test by input type. Closes elastic#186
Thanks for this change! Would you mind updating the HOWTO for system testing as well: https://github.com/elastic/elastic-package/blob/master/docs/howto/system_testing.md? |
I added a section to describe the |
@@ -75,10 +75,11 @@ Next, we must define configuration for each data stream that we want to system t | |||
config.yml | |||
``` | |||
|
|||
The `config.yml` file allows you define values for package and data stream-level variables. For example, the `apache/access` data stream's `config.yml` is shown below. | |||
The `config.yml` file allows you to define values for package and data stream-level variables. For example, the `apache/access` data stream's `config.yml` is shown below. |
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.
Thanks.
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.
LGTM. Thanks, again, for implementing this!
This provides a means to select a stream to test by input type.
Closes #186