File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
plc4py/tests/unit/plc4py/drivers/modbus Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 3030@pytest .mark .asyncio
3131async def manual_test_plc_driver_modbus_connect ():
3232 driver_manager = PlcDriverManager ()
33- async with driver_manager .connection ("modbus://127.0.0.1:5555 " ) as connection :
33+ async with driver_manager .connection ("modbus://1 " ) as connection :
3434 assert connection .is_connected ()
3535 assert not connection .is_connected ()
3636
3737
3838@pytest .mark .asyncio
39- async def test_plc_driver_modbus_read ():
39+ async def manual_test_plc_driver_modbus_read ():
4040 driver_manager = PlcDriverManager ()
41- async with driver_manager .connection ("modbus://127.0.0.1:5555 " ) as connection :
41+ async with driver_manager .connection ("modbus://192.168.23.12:502 " ) as connection :
4242 with connection .read_request_builder () as builder :
4343 builder .add_item ("Random Tag" , "4x00001[10]" )
4444 request = builder .build ()
You can’t perform that action at this time.
0 commit comments