Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
# limitations under the License.
#
import time
import os
import unittest

import pyspark.cloudpickle
from pyspark.sql.tests.streaming.test_streaming_listener import StreamingListenerTestsMixin
Expand Down Expand Up @@ -44,6 +46,9 @@ def onQueryTerminated(self, event):


class StreamingListenerParityTests(StreamingListenerTestsMixin, ReusedConnectTestCase):
@unittest.skipIf(
"SPARK_SKIP_CONNECT_COMPAT_TESTS" in os.environ, "Failed with different Client <> Server"
)
def test_listener_events(self):
test_listener = TestListenerSpark()

Expand Down