aboutsummaryrefslogtreecommitdiff
path: root/docs/building-spark.md
diff options
context:
space:
mode:
authorMark Grover <mark@apache.org>2016-10-20 15:30:01 -0700
committerMarcelo Vanzin <vanzin@cloudera.com>2016-10-20 15:30:01 -0700
commit2d14ab7e644b64ff911772e71f42653ba949cb07 (patch)
tree0bf5be80960d9d2fabd11fd60ccc828218fe2ee6 /docs/building-spark.md
parent7f9ec19eae60abe589ffd22259a9065e7e353a57 (diff)
downloadspark-2d14ab7e644b64ff911772e71f42653ba949cb07.tar.gz
spark-2d14ab7e644b64ff911772e71f42653ba949cb07.tar.bz2
spark-2d14ab7e644b64ff911772e71f42653ba949cb07.zip
[DOCS] Update docs to not suggest to package Spark before running tests.
## What changes were proposed in this pull request? Update docs to not suggest to package Spark before running tests. ## How was this patch tested? Not creating a JIRA since this pretty small. We haven't had the need to run mvn package before mvn test since 1.6 at least, or so I am told. So, updating the docs to not be misguiding. Author: Mark Grover <mark@apache.org> Closes #15572 from markgrover/doc_update.
Diffstat (limited to 'docs/building-spark.md')
-rw-r--r--docs/building-spark.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/building-spark.md b/docs/building-spark.md
index f5acee6b90..ebe46a42a1 100644
--- a/docs/building-spark.md
+++ b/docs/building-spark.md
@@ -217,9 +217,8 @@ For help in setting up IntelliJ IDEA or Eclipse for Spark development, and troub
Tests are run by default via the [ScalaTest Maven plugin](http://www.scalatest.org/user_guide/using_the_scalatest_maven_plugin).
Note that tests should not be run as root or an admin user.
-Some of the tests require Spark to be packaged first, so always run `mvn package` with `-DskipTests` the first time. The following is an example of a correct (build, test) sequence:
+The following is an example of a command to run the tests:
- ./build/mvn -Pyarn -Phadoop-2.3 -DskipTests -Phive -Phive-thriftserver clean package
./build/mvn -Pyarn -Phadoop-2.3 -Phive -Phive-thriftserver test
The ScalaTest plugin also supports running only a specific Scala test suite as follows:
@@ -233,9 +232,8 @@ or a Java test:
## Testing with SBT
-Some of the tests require Spark to be packaged first, so always run `build/sbt package` the first time. The following is an example of a correct (build, test) sequence:
+The following is an example of a command to run the tests:
- ./build/sbt -Pyarn -Phadoop-2.3 -Phive -Phive-thriftserver package
./build/sbt -Pyarn -Phadoop-2.3 -Phive -Phive-thriftserver test
To run only a specific test suite as follows: