fix: EXPOSED-653 Split H2 gradle test task by dialects #2317
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.
Description
Here is a small fix of our gradle test tasks. Before it was not possible to run the tests for particular H2 dialect (or the one without dialect). It was not always convenient for local testing and especially debugging.
With these changes for every database that has multiple dialects (H2_v1, H2_v2 actually) would be created separated gradle task with the name
test_${db}_${dialect}
. The task that would run tests with all the dialects (as it was working before) would be namedtest_all_${db}
.The full list of test tasks will look like:
I also renamed mysql databases so it matches other database names.
Type of Change
Please mark the relevant options with an "X":
Affected databases:
Related Issues
EXPOSED-653 Split H2 gradle test task by dialects