We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 050b03c commit cc6e976Copy full SHA for cc6e976
.coveragerc
@@ -1,4 +1,5 @@
1
[run]
2
omit =
3
pymodbus/repl/*
4
- pymodbus/internal/*
+ pymodbus/internal/*
5
+ pymodbus/server/asyncio.py
pymodbus/client/sync.py
@@ -470,6 +470,7 @@ def connect(self):
470
471
:returns: True if connection succeeded, False otherwise
472
"""
473
+ import serial
474
if self.socket:
475
return True
476
try:
test/conftest.py
@@ -0,0 +1,3 @@
+from pymodbus.compat import IS_PYTHON3, PYTHON_VERSION
+if not IS_PYTHON3 or IS_PYTHON3 and PYTHON_VERSION.minor < 7:
+ collect_ignore = ["test_server_asyncio.py"]
0 commit comments