-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-22308][test-maven] Support alternative unit testing styles in external applications #19705
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
Conversation
… from the part that works with just any old test suite.
… where they came from, in an attempt to make diffs simpler
|
@gatorsmile @srowen I think this is set now. |
|
Test build #83633 has finished for PR 19705 at commit
|
|
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
|
|
To check the syntax, you can run the following command
|
gatorsmile
left a comment
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! Merged to master. |
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.