-
Notifications
You must be signed in to change notification settings - Fork 1k
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
ksql-functional-test
module depends on test-jars
#2804
Comments
Ping @hjafarpour do we plan to take care of this? |
Removing those dependencies will require code duplication since we would need to have the classes from the tests in the new |
I didn't dig into the details, but there probably are more options than full code duplication or depending on test jars. Either way, given the other problems this has caused (like test UDFS showing up in the list), it is probably better to figure out a fix and do it on 5.3. The next bug fix is in a few weeks. we should aim to get this done by then. |
One of the tickets associated with #3252 |
@purplefox, we were hoping you may be able to help with this... |
Another possibility would be to separate out the shared test util classes into a new module, and have ksql-functional-tests and any tests from other modules that require them to depend on that. |
Or move them to ksql-test-utils |
I think separating them to a different module is a good idea. But I would like someone with more engineering experience to chip in as well. |
The new
ksql-functional-tests
module, which I understand will be what customers will use to test KSQL statements, currently depends on test-jars from other modules, e.g.We don't really want to be shipping jars to customers that rely on test jars, so we should break all these dependencies.
The text was updated successfully, but these errors were encountered: