Skip to content

Commit 934a171

Browse files
gaogaotiantianHyukjinKwon
authored andcommitted
[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]>
1 parent 9aea212 commit 934a171

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/testing/unittestutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def main(module="__main__", output="target/test-reports"):
2222
try:
2323
import xmlrunner
2424

25-
testRunner = xmlrunner.XMLTestRunner(output=output, verbosity=2)
25+
testRunner = xmlrunner.XMLTestRunner(output=output, verbosity=2, outsuffix="")
2626
except ImportError:
2727
testRunner = None
2828
unittest.main(module=module, testRunner=testRunner, verbosity=2)

0 commit comments

Comments
 (0)