Skip to content

Commit ee79429

Browse files
committed
Bug fix
1 parent 4f47c27 commit ee79429

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ jobs:
4242
run: poetry run ruff format --check
4343

4444
- name: Test code
45-
if: matrix.python-version != '3.12'
4645
run: poetry run pytest
4746

4847
- name: Test code with coverage

tests/protocol/test_protocol.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import asyncio
22
import unittest
33

4+
# ruff: noqa: F401
5+
from unittest.mock import MagicMock
6+
47
from pyown.exceptions import ParseError
58
from pyown.messages import ACK
69
from pyown.protocol.protocol import OWNProtocol

0 commit comments

Comments
 (0)