Skip to content

Commit b711214

Browse files
committed
Reverted run-tests.py
1 parent 643b59d commit b711214

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

python/run-tests.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,6 @@ def run_individual_python_test(test_name, pyspark_python):
7878
start_time = time.time()
7979
try:
8080
per_test_output = tempfile.TemporaryFile()
81-
LOGGER.info([os.path.join(SPARK_HOME, "bin/pyspark"), test_name])
82-
LOGGER.info(env)
8381
retcode = subprocess.Popen(
8482
[os.path.join(SPARK_HOME, "bin/pyspark"), test_name],
8583
stderr=per_test_output, stdout=per_test_output, env=env).wait()
@@ -160,7 +158,7 @@ def main():
160158
else:
161159
log_level = logging.INFO
162160
logging.basicConfig(stream=sys.stdout, level=log_level, format="%(message)s")
163-
LOGGER.info("Running PySpark tests. Output is in %s", LOG_FILE)
161+
LOGGER.info("Running PySpark tests. Output is in python/%s", LOG_FILE)
164162
if os.path.exists(LOG_FILE):
165163
os.remove(LOG_FILE)
166164
python_execs = opts.python_executables.split(',')

0 commit comments

Comments
 (0)