@@ -213,7 +213,6 @@ async def test_async_start_server_no_loop(self):
213213 """Test that the modbus tcp asyncio server starts correctly"""
214214 await self .start_server (do_forever = False )
215215
216- @pytest .mark .skipif (pytest .IS_WINDOWS , reason = "Windows have a timeout problem." )
217216 async def test_async_start_server (self ):
218217 """Test that the modbus tcp asyncio server starts correctly"""
219218 await self .start_server ()
@@ -265,7 +264,6 @@ async def test_async_tcp_server_close_active_connection(self):
265264 await asyncio .sleep (0.5 )
266265 await self .server .server_close ()
267266
268- @pytest .mark .skip
269267 async def test_async_tcp_server_no_slave (self ):
270268 """Test unknown slave unit exception"""
271269 self .context = ModbusServerContext (
@@ -278,7 +276,6 @@ async def test_async_tcp_server_no_slave(self):
278276 self .server .server_close ()
279277 self .server = None
280278
281- @pytest .mark .skip
282279 async def test_async_tcp_server_modbus_error (self ):
283280 """Test sending garbage data on a TCP socket should drop the connection"""
284281 BasicClient .data = TEST_DATA
@@ -435,7 +432,6 @@ async def test_async_udp_server_exception(self):
435432 self .server .protocol ._sock ._closed # pylint: disable=protected-access
436433 )
437434
438- @pytest .mark .skip
439435 async def test_async_tcp_server_exception (self ):
440436 """Send garbage data on a TCP socket should drop the connection"""
441437 BasicClient .data = b"\xFF \xFF \xFF \xFF \xFF \xFF \xFF \xFF "
0 commit comments