Skip to content

Commit e9bb771

Browse files
committed
tests: remove pytestmark = pytest.mark.asyncio
Remove a couple of occurences that were almost randomly sprinkled in the code. This would matter only if we used pytest-asyncio's asyncio_mode = "strict", and we don't intend to do so anytime soon. (If we did, more changes would be needed anyway.)
1 parent 6b28430 commit e9bb771

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

tests/test_jaraco.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
if TYPE_CHECKING:
1313
from ircstream.ircserver import IRCServer
1414

15-
pytestmark = pytest.mark.asyncio
16-
1715
BOTNAME = "testsuite-bot"
1816

1917

tests/test_rawsocket.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
from ircstream.ircserver import IRCClient, IRCServer
1818

19-
pytestmark = pytest.mark.asyncio
20-
2119

2220
class BareClient:
2321
"""Bare client around socket operations to support a line-based protocol."""

tests/test_rc2udp.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
from ircstream.rc2udp import RC2UDPServer
1212

13-
pytestmark = pytest.mark.asyncio
14-
1513

1614
class MockIRCServer:
1715
"""Mocks the IRCServer object.

0 commit comments

Comments
 (0)