[SPARK-22308][test-maven] Support alternative unit testing styles in external applications#19705
Closed
nkronenfeld wants to merge 15 commits intoapache:masterfrom
Closed
[SPARK-22308][test-maven] Support alternative unit testing styles in external applications#19705nkronenfeld wants to merge 15 commits intoapache:masterfrom
nkronenfeld wants to merge 15 commits intoapache:masterfrom
Conversation
… from the part that works with just any old test suite.
… where they came from, in an attempt to make diffs simpler
Contributor
Author
|
@gatorsmile @srowen I think this is set now. |
|
Test build #83633 has finished for PR 19705 at commit
|
Contributor
Author
|
ok, now I question my own testing... does maven not run scalastyle tests? Or did I not run the tests properly somehow? I just ran mvn test from root, and it all seemed to work on my machine |
|
Test build #83657 has finished for PR 19705 at commit
|
Member
|
To check the syntax, you can run the following command
|
Member
|
Thanks! Merged to master. |
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.
Continuation of PR#19528 (#19529 (comment))
The problem with the maven build in the previous PR was the new tests.... the creation of a spark session outside the tests meant there was more than one spark session around at a time.
I was using the spark session outside the tests so that the tests could share data; I've changed it so that each test creates the data anew.