aboutsummaryrefslogtreecommitdiff
path: root/dev/run-tests-jenkins
diff options
context:
space:
mode:
authorYu ISHIKAWA <yuu.ishikawa@gmail.com>2015-08-27 19:38:53 -0700
committerShivaram Venkataraman <shivaram@cs.berkeley.edu>2015-08-27 19:38:53 -0700
commit1f90c5e2198bcf49e115d97ec300c17c1be4dcb4 (patch)
treeb94d86d67bddbb4a4a27057a82b43547cf019314 /dev/run-tests-jenkins
parent54cda0deb6bebf1470f16ba5bcc6c4fb842bdac1 (diff)
downloadspark-1f90c5e2198bcf49e115d97ec300c17c1be4dcb4.tar.gz
spark-1f90c5e2198bcf49e115d97ec300c17c1be4dcb4.tar.bz2
spark-1f90c5e2198bcf49e115d97ec300c17c1be4dcb4.zip
[SPARK-8505] [SPARKR] Add settings to kick `lint-r` from `./dev/run-test.py`
JoshRosen we'd like to check the SparkR source code with the `dev/lint-r` script on the Jenkins. I tried to incorporate the script into `dev/run-test.py`. Could you review it when you have time? shivaram I modified `dev/lint-r` and `dev/lint-r.R` to install lintr package into a local directory(`R/lib/`) and to exit with a lint status. Could you review it? - [[SPARK-8505] Add settings to kick `lint-r` from `./dev/run-test.py` - ASF JIRA](https://issues.apache.org/jira/browse/SPARK-8505) Author: Yu ISHIKAWA <yuu.ishikawa@gmail.com> Closes #7883 from yu-iskw/SPARK-8505.
Diffstat (limited to 'dev/run-tests-jenkins')
-rwxr-xr-xdev/run-tests-jenkins2
1 files changed, 2 insertions, 0 deletions
diff --git a/dev/run-tests-jenkins b/dev/run-tests-jenkins
index f144c05304..39cf54f781 100755
--- a/dev/run-tests-jenkins
+++ b/dev/run-tests-jenkins
@@ -210,6 +210,8 @@ done
failing_test="Scala style tests"
elif [ "$test_result" -eq "$BLOCK_PYTHON_STYLE" ]; then
failing_test="Python style tests"
+ elif [ "$test_result" -eq "$BLOCK_R_STYLE" ]; then
+ failing_test="R style tests"
elif [ "$test_result" -eq "$BLOCK_DOCUMENTATION" ]; then
failing_test="to generate documentation"
elif [ "$test_result" -eq "$BLOCK_BUILD" ]; then