enable playing a gesture with priority, clearing the queue #25

Closed
8464960 wants to merge 7 commits from feat/force-gesture into dev
Showing only changes of commit 5d5c8553c2 - Show all commits

10
test/conftest.py Normal file
View File

@@ -0,0 +1,10 @@
from mock import patch, MagicMock
import pytest
@pytest.fixture(autouse=True)
def mock_zmq_context():
with patch("zmq.Context") as mock:
mock.instance.return_value = MagicMock()
yield mock