-
Notifications
You must be signed in to change notification settings - Fork 118
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
Allow packages without service deployer to have system tests #1768
Allow packages without service deployer to have system tests #1768
Conversation
@@ -0,0 +1,36 @@ | |||
format_version: 3.1.3 | |||
name: test_without_service_deployer | |||
title: "Package with system tests and no service deployer." |
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.
Looking at the system test config , this package looks like the log
input package from the integrations repository.
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.
This is basically the vanilla package created with elastic-package create package
, with the system test and some additional fields.
Thanks @mrodm for the review! |
💚 Build Succeeded
History
cc @jsoriano |
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!
This will allow to leverage the new custom definitions added in #1765, without forcing the packages to define a service deployer.
This is useful when the only requirement to test the package is a running agent, for example when collecting information from the system where it is running.
Part of #787