Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Temporarily disable JVM tests so we can test Python speedup in Jenkins.
  • Loading branch information
JoshRosen committed Jun 28, 2015
commit 037b6860a1a3caa8c5bab14447bad62b92a486a2
8 changes: 4 additions & 4 deletions dev/run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,16 +454,16 @@ def main():
build_apache_spark(build_tool, hadoop_version)

# backwards compatibility checks
detect_binary_inop_with_mima()
# detect_binary_inop_with_mima()

# run the test suites
run_scala_tests(build_tool, hadoop_version, test_modules)
# run_scala_tests(build_tool, hadoop_version, test_modules)

modules_with_python_tests = [m for m in test_modules if m.python_test_goals]
if modules_with_python_tests:
run_python_tests(modules_with_python_tests)
if any(m.should_run_r_tests for m in test_modules):
run_sparkr_tests()
# if any(m.should_run_r_tests for m in test_modules):
# run_sparkr_tests()


def _test():
Expand Down