-
Notifications
You must be signed in to change notification settings - Fork 28.5k
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
[Docs] Run tests like in contributing guide #2149
Conversation
The Contributing to Spark guide [recommends](https://cwiki.apache.org/confluence/display/SPARK/Contributing+to+Spark#ContributingtoSpark-AutomatedTesting) running tests by calling `run-tests`. The README should, too. `./sbt/sbt test` does not cover Python tests or style tests.
QA tests have started for PR 2149 at commit
|
QA tests have finished for PR 2149 at commit
|
Err, looks like some Hive test failed. Don't understand why. |
Jenkins, retest this please. |
QA tests have started for PR 2149 at commit
|
QA tests have finished for PR 2149 at commit
|
OK, this time it's a PySpark failure. I'm not sure what's going on. @rxin Could you take a look? This should be a very quick review. |
I think this error could be some sort of flakiness / interference from other Jenkins workers on the same box; maybe we ran out of ephemeral ports or something. Jenkins, retest this please. |
Jenkins, retest this please. |
Actually I'm going to merge it since the change has no effect on the tests. |
The Contributing to Spark guide [recommends](https://cwiki.apache.org/confluence/display/SPARK/Contributing+to+Spark#ContributingtoSpark-AutomatedTesting) running tests by calling `./dev/run-tests`. The README should, too. `./sbt/sbt test` does not cover Python tests or style tests. Author: nchammas <nicholas.chammas@gmail.com> Closes #2149 from nchammas/patch-2 and squashes the following commits: 2b3b132 [nchammas] [Docs] Run tests like in contributing guide (cherry picked from commit 73b3089) Signed-off-by: Reynold Xin <rxin@apache.org>
The Contributing to Spark guide [recommends](https://cwiki.apache.org/confluence/display/SPARK/Contributing+to+Spark#ContributingtoSpark-AutomatedTesting) running tests by calling `./dev/run-tests`. The README should, too. `./sbt/sbt test` does not cover Python tests or style tests. Author: nchammas <nicholas.chammas@gmail.com> Closes apache#2149 from nchammas/patch-2 and squashes the following commits: 2b3b132 [nchammas] [Docs] Run tests like in contributing guide
The Contributing to Spark guide recommends running tests by calling
./dev/run-tests
. The README should, too../sbt/sbt test
does not cover Python tests or style tests.