HyukjinKwon opened a new pull request, #36652:
URL: https://github.com/apache/spark/pull/36652
### What changes were proposed in this pull request?
This PR proposes to make `PandasOnSparkTestCase` inherit `ReusedSQLTestCase`.
### Why are the changes needed?
We don't need this:
```python
@classmethod
def tearDownClass(cls):
# We don't stop Spark session to reuse across all tests.
# The Spark session will be started and stopped at PyTest session
level.
# Please see pyspark/pandas/conftest.py.
pass
```
anymore in Apache Spark. This has existed to speed up the tests when the
codes are in Koalas repository where the tests run sequentially in single
process.
In Apache Spark, we run in multiple processes, and we don't need this
anymore.
### Does this PR introduce _any_ user-facing change?
No, test-only.
### How was this patch tested?
Existing CI should test it out.
--
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]