HyukjinKwon edited a comment on pull request #29843: URL: https://github.com/apache/spark/pull/29843#issuecomment-697066294
@sunchao, I think it's because Jenkins uses Python 2 for `python` executable which we dropped (whereas GitHub Actions uses Python 3 properly for `python` executable`. That module has been renamed to socketserver in Python 3. Can you explicitly change the test to use `python3` instead of `python` in the tests at, for example, here: https://github.com/apache/spark/blob/master/resource-managers/yarn/src/test/scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala#L177-L180 This fails in this PR specifically because the tests failed here have `ExtendedYarnTest` tag which will only be run when some changes are made into Yarn. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
