HyukjinKwon commented on code in PR #44778:
URL: https://github.com/apache/spark/pull/44778#discussion_r1469111152
##########
python/pyspark/sql/tests/test_session.py:
##########
@@ -213,6 +217,7 @@ def
test_active_session_with_None_and_not_None_context(self):
if sc is not None:
sc.stop()
+ @unittest.skipIf(not have_pyarrow, pyarrow_requirement_message)
Review Comment:
Let's fix it as
```python
@unittest.skipIf(not should_test_connect, connect_requirement_message)
```
See `pyspark.testing.connectutils`.
--
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]