Yikun commented on a change in pull request #33174: URL: https://github.com/apache/spark/pull/33174#discussion_r662247848
########## File path: python/run-tests.py ########## @@ -40,6 +42,99 @@ from sparktestsupport.shellutils import which, subprocess_check_output # noqa from sparktestsupport.modules import all_modules, pyspark_sql # noqa +# Make sure logging config before any possible logging print +logging.basicConfig(stream=sys.stdout, format="%(message)s") +LOGGER = logging.getLogger() + + +def _get_module_from_name(name): + __import__(name) + return sys.modules[name] + + +def _discover_python_unittests(paths, discover_slow=False): Review comment: 'discover_slow=False' need remove -- 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. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org