Skip to content
Open
Show file tree
Hide file tree
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
7 changes: 3 additions & 4 deletions tests/test_connection_query_tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import json
import queue
from unittest.mock import MagicMock
from unittest.mock import MagicMock, patch

import cbor2
import pyarrow
Expand All @@ -22,9 +22,8 @@
def _make_connection():
"""Create a Connection with a mocked WebSocket."""
mock_ws = MagicMock()
# Prevent the background thread from running the main loop
mock_ws.protocol.state = 4 # CLOSED state, so __main_loop exits immediately
return Connection(mock_ws)
with patch("wherobots.db.connection.threading.Thread.start"):
return Connection(mock_ws)


def _track_query(conn, execution_id="exec-1", state=ExecutionState.RUNNING, store=None):
Expand Down
Loading
Loading