HyukjinKwon commented on a change in pull request #23117: [WIP][SPARK-7721][INFRA] Run and generate test coverage report from Python via Jenkins URL: https://github.com/apache/spark/pull/23117#discussion_r249339865
########## File path: python/pyspark/streaming/tests/test_dstream.py ########## @@ -22,12 +22,16 @@ import unittest from functools import reduce from itertools import chain +import platform from pyspark import SparkConf, SparkContext, RDD from pyspark.streaming import StreamingContext from pyspark.testing.streamingutils import PySparkStreamingTestCase [email protected]( + "pypy" in platform.python_implementation().lower() and "COVERAGE_PROCESS_START" in os.environ, + "PyPy implementation causes to hang DStream tests forever when Coverage report is used.") Review comment: Hm, I am not sure but those tests hang forever when coverage is used. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on 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]
