HyukjinKwon commented on a change in pull request #27183: [DO-NOT-MERGE] Investigate 'WorkerMemoryTest.test_memory_limit' failure URL: https://github.com/apache/spark/pull/27183#discussion_r365654206
########## File path: python/pyspark/tests/test_worker.py ########## @@ -177,9 +183,8 @@ def test_reuse_worker_of_parallelize_xrange(self): @unittest.skipIf( - not has_resource_module, - "Memory limit feature in Python worker is dependent on " - "Python's 'resource' module; however, not found.") + not has_resource_module or "pypy" in platform.python_implementation().lower(), + resource_requirement_message or "This test does not pass on pypy. See SPARK-30480") Review comment: We'll drop Python 2 very soon and the current PyPy in Jenkins is compatible with Python 2. So, it won't be a big issue to skip the test for now. ---------------------------------------------------------------- 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] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
