This is an automated email from the ASF dual-hosted git repository.

gurwls223 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new 934a171124cc [SPARK-54948][PYTHON][TEST] Use the same testsuite name 
for same tests
934a171124cc is described below

commit 934a171124cc85b3b6eff28740b25421b80e2988
Author: Tian Gao <[email protected]>
AuthorDate: Thu Jan 8 08:16:07 2026 +0900

    [SPARK-54948][PYTHON][TEST] Use the same testsuite name for same tests
    
    ### What changes were proposed in this pull request?
    
    Avoid the timestamp suffix on test suite name so codecov.io won't believe 
they are different tests.
    
    ### Why are the changes needed?
    
    With different test suite names, the same test (with the same test name) 
will be considered different by codecov.io.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No
    
    ### How was this patch tested?
    
    CI, but it should not have any real code impact
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    No
    
    Closes #53715 from gaogaotiantian/testsuite-name.
    
    Authored-by: Tian Gao <[email protected]>
    Signed-off-by: Hyukjin Kwon <[email protected]>
---
 python/pyspark/testing/unittestutils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/pyspark/testing/unittestutils.py 
b/python/pyspark/testing/unittestutils.py
index 40461ef68691..dd5fc4d9ca4a 100644
--- a/python/pyspark/testing/unittestutils.py
+++ b/python/pyspark/testing/unittestutils.py
@@ -22,7 +22,7 @@ def main(module="__main__", output="target/test-reports"):
     try:
         import xmlrunner
 
-        testRunner = xmlrunner.XMLTestRunner(output=output, verbosity=2)
+        testRunner = xmlrunner.XMLTestRunner(output=output, verbosity=2, 
outsuffix="")
     except ImportError:
         testRunner = None
     unittest.main(module=module, testRunner=testRunner, verbosity=2)


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

Reply via email to