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
Moving build tests earlier
  • Loading branch information
pwendell committed Aug 31, 2015
commit 5670b6a8231f19eb1bba11fdae5c965f653ee18c
4 changes: 2 additions & 2 deletions dev/run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,8 @@ def main():

# spark build
build_apache_spark(build_tool, hadoop_version)
if should_run_build_tests:
run_build_tests()

# backwards compatibility checks
detect_binary_inop_with_mima()
Expand All @@ -508,8 +510,6 @@ def main():
run_python_tests(modules_with_python_tests, opts.parallelism)
if any(m.should_run_r_tests for m in test_modules):
run_sparkr_tests()
if should_run_build_tests:
run_build_tests()


def _test():
Expand Down