We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f47c27 commit ee79429Copy full SHA for ee79429
.github/workflows/test.yml
@@ -42,7 +42,6 @@ jobs:
42
run: poetry run ruff format --check
43
44
- name: Test code
45
- if: matrix.python-version != '3.12'
46
run: poetry run pytest
47
48
- name: Test code with coverage
tests/protocol/test_protocol.py
@@ -1,6 +1,9 @@
1
import asyncio
2
import unittest
3
4
+# ruff: noqa: F401
5
+from unittest.mock import MagicMock
6
+
7
from pyown.exceptions import ParseError
8
from pyown.messages import ACK
9
from pyown.protocol.protocol import OWNProtocol
0 commit comments