aboutsummaryrefslogtreecommitdiff
path: root/dev/run-tests.py
diff options
context:
space:
mode:
authorJosh Rosen <joshrosen@databricks.com>2016-01-04 01:04:29 -0800
committerJosh Rosen <joshrosen@databricks.com>2016-01-04 01:04:29 -0800
commit9fd7a2f0247ed6cea0e8dbcdd2b24f41200b3e24 (patch)
tree6949efd99af864cee020c6e6b930aaa889b9000f /dev/run-tests.py
parent0d165ec2050aa06aa545d74c8d7c2ff197fa02de (diff)
downloadspark-9fd7a2f0247ed6cea0e8dbcdd2b24f41200b3e24.tar.gz
spark-9fd7a2f0247ed6cea0e8dbcdd2b24f41200b3e24.tar.bz2
spark-9fd7a2f0247ed6cea0e8dbcdd2b24f41200b3e24.zip
[SPARK-10359][PROJECT-INFRA] Use more random number in dev/test-dependencies.sh; fix version switching
This patch aims to fix another potential source of flakiness in the `dev/test-dependencies.sh` script. pwendell's original patch and my version used `$(date +%s | tail -c6)` to generate a suffix to use when installing temporary Spark versions into the local Maven cache, but this value only changes once per second and thus is highly collision-prone when concurrent builds launch on AMPLab Jenkins. In order to reduce the potential for conflicts, this patch updates the script to call Python's random number generator instead. I also fixed a bug in how we captured the original project version; the bug was causing the exit handler code to fail. Author: Josh Rosen <joshrosen@databricks.com> Closes #10558 from JoshRosen/build-dep-tests-round-3.
Diffstat (limited to 'dev/run-tests.py')
-rwxr-xr-xdev/run-tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/run-tests.py b/dev/run-tests.py
index 9db728d799..8726889cbc 100755
--- a/dev/run-tests.py
+++ b/dev/run-tests.py
@@ -419,8 +419,8 @@ def run_python_tests(test_modules, parallelism):
def run_build_tests():
- # set_title_and_block("Running build tests", "BLOCK_BUILD_TESTS")
- # run_cmd([os.path.join(SPARK_HOME, "dev", "test-dependencies.sh")])
+ set_title_and_block("Running build tests", "BLOCK_BUILD_TESTS")
+ run_cmd([os.path.join(SPARK_HOME, "dev", "test-dependencies.sh")])
pass