machov opened a new pull request, #54426: URL: https://github.com/apache/spark/pull/54426
Fixes #54405 The `test_session.py` file was missing the `if __name__ == '__main__'` block that allows it to be executed directly and included in CI runs. This follows the pattern established in other test files throughout the codebase. This simple addition resolves the issue where these tests were not being executed in CI, ensuring better test coverage going forward. **Changes:** - Added standard main block to `python/pyspark/sql/tests/connect/test_session.py` - Follows the same pattern used in other test files (imports `main` from `pyspark.testing`) **Testing:** The file can now be executed directly with `python test_session.py`. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
