zhengruifeng commented on code in PR #53528:
URL: https://github.com/apache/spark/pull/53528#discussion_r2652042597


##########
python/run-tests.py:
##########
@@ -134,6 +135,12 @@ def run_individual_python_test(target_dir, test_name, 
pyspark_python, keep_test_
 
     env["PYSPARK_SUBMIT_ARGS"] = " ".join(spark_args)
 
+    timeout = int(os.environ.get("PYSPARK_TEST_TIMEOUT", 100))
+    if timeout == 0:
+        timeout = None
+    else:
+        env["PYSPARK_TEST_TIMEOUT"] = str(timeout)

Review Comment:
   no, it is a new env, and only used in this PR



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to