From 1181cc3be7bcf21fbe7e88b35ac662353fb2f366 Mon Sep 17 00:00:00 2001 From: Yin Huai Date: Tue, 14 Feb 2017 20:19:28 -0800 Subject: [PATCH] Right now, we only have info level log after we finish the tests of a Python test file. We should also log the start of a test. So, if a test is hanging, we can tell which test file is running. --- python/run-tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/run-tests.py b/python/run-tests.py index 38b3bb84c10b..53a0aef229b0 100755 --- a/python/run-tests.py +++ b/python/run-tests.py @@ -72,7 +72,7 @@ def run_individual_python_test(test_name, pyspark_python): 'PYSPARK_PYTHON': which(pyspark_python), 'PYSPARK_DRIVER_PYTHON': which(pyspark_python) }) - LOGGER.debug("Starting test(%s): %s", pyspark_python, test_name) + LOGGER.info("Starting test(%s): %s", pyspark_python, test_name) start_time = time.time() try: per_test_output = tempfile.TemporaryFile()