Enable emulation testing with pytest-xdist support #2717
347 fail, 1 250 skipped, 15 pass in 1m 5s
1 612 tests 15 ✅ 1m 5s ⏱️
1 suites 1 250 💤
1 files 347 ❌
Results for commit 79097f9.
Annotations
Check warning on line 0 in test.test_ad9084
github-actions / Test Results
test_ad9084_str_attr[rx_test_mode-val1-adi.ad9084] (test.test_ad9084) failed
results.xml [took 3s]
Raw output
Exception: No device found
self = <adi.ad9084.ad9084 object at 0x7f73146fb9d0>, uri = 'ip:10.1.0.81:30433'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7f7313c545c0>
func = <_FuncPtr object at 0x7f7336cc5dc0>, arguments = (b'ip:10.1.0.81:30433',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_multiple_values = <function attribute_multiple_values at 0x7f731e10e3a0>
iio_uri = 'ip:10.1.0.81:30433', classname = 'adi.ad9084', attr = 'rx_test_mode'
val = ['midscale_short', 'pos_fullscale', 'neg_fullscale', 'checkerboard', 'pn23', 'pn9', ...]
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize(
"attr, val",
[
("rx_nyquist_zone", ["even", "odd"]),
(
"rx_test_mode",
[
"midscale_short",
"pos_fullscale",
"neg_fullscale",
"checkerboard",
"pn23",
"pn9",
"one_zero_toggle",
"user",
"pn7",
"pn15",
"pn31",
"ramp",
"off",
],
),
],
)
def test_ad9084_str_attr(test_attribute_multiple_values, iio_uri, classname, attr, val):
> test_attribute_multiple_values(iio_uri, classname, attr, val, 0)
test/test_ad9084.py:51:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:221: in attribute_multiple_values
assert dev_interface(uri, classname, val, attr, tol, sleep=sleep)
test/common.py:103: in dev_interface
sdr = eval(classname + "(uri='" + uri + "')")
<string>:1: in <module>
???
adi/ad9084.py:85: in __init__
context_manager.__init__(self, uri, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad9084.ad9084 object at 0x7f73146fb9d0>, uri = 'ip:10.1.0.81:30433'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad7746
github-actions / Test Results
test_ad7746_attr_multiple_val[voltage0-sampling_frequency-values0-0.5-2-ad7746-adi.ad7746] (test.test_ad7746) failed
results.xml [took 3s]
Raw output
Exception: No device found
self = <adi.ad7746.ad7746 object at 0x7ff6b865b760>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7ff6b82d5640>
func = <_FuncPtr object at 0x7ff6db2e2dc0>, arguments = (b'ip:10.1.0.81:30432',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_multiple_values_device_channel = <function attribute_multiple_values_device_channel at 0x7ff6c2716940>
iio_uri = 'ip:10.1.0.81:30432', classname = 'adi.ad7746', device_name = 'ad7746'
channel = 'voltage0', attr = 'sampling_frequency'
values = ['50', '31', '16', '8'], tol = 0.5, repeats = 2
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize("device_name", [(device_name)])
@pytest.mark.parametrize(
"channel, attr, values, tol, repeats",
[
(VIN, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(VIN_VDD, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(
CIN1,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN1_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(CIN1, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1, "offset", ["8127504"], 1, 2),
(CIN2, "offset", ["8127504"], 1, 2),
(CIN1, "offset", ["7111566"], 1, 2),
(CIN2, "offset", ["7111566"], 1, 2),
(CIN1, "offset", ["5079690"], 1, 2),
(CIN2, "offset", ["5079690"], 1, 2),
],
)
def test_ad7746_attr_multiple_val(
test_attribute_multiple_values_device_channel,
iio_uri,
classname,
device_name,
channel,
attr,
values,
tol,
repeats,
):
> test_attribute_multiple_values_device_channel(
iio_uri, classname, device_name, channel, attr, values, tol, repeats
)
test/test_ad7746.py:180:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:613: in attribute_multiple_values_device_channel
assert dev_interface_device_name_channel(
test/common.py:204: in dev_interface_device_name_channel
sdr = eval(
<string>:1: in <module>
???
adi/ad7746.py:22: in __init__
context_manager.__init__(self, uri, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad7746.ad7746 object at 0x7ff6b865b760>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad7746
github-actions / Test Results
test_ad7746_attr_multiple_val[voltage1-sampling_frequency-values1-0.5-2-ad7746-adi.ad7746] (test.test_ad7746) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad7746.ad7746 object at 0x7ff6b81b36a0>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7ff6b82d5e40>
func = <_FuncPtr object at 0x7ff6db2e2dc0>, arguments = (b'ip:10.1.0.81:30432',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_multiple_values_device_channel = <function attribute_multiple_values_device_channel at 0x7ff6c2716940>
iio_uri = 'ip:10.1.0.81:30432', classname = 'adi.ad7746', device_name = 'ad7746'
channel = 'voltage1', attr = 'sampling_frequency'
values = ['50', '31', '16', '8'], tol = 0.5, repeats = 2
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize("device_name", [(device_name)])
@pytest.mark.parametrize(
"channel, attr, values, tol, repeats",
[
(VIN, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(VIN_VDD, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(
CIN1,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN1_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(CIN1, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1, "offset", ["8127504"], 1, 2),
(CIN2, "offset", ["8127504"], 1, 2),
(CIN1, "offset", ["7111566"], 1, 2),
(CIN2, "offset", ["7111566"], 1, 2),
(CIN1, "offset", ["5079690"], 1, 2),
(CIN2, "offset", ["5079690"], 1, 2),
],
)
def test_ad7746_attr_multiple_val(
test_attribute_multiple_values_device_channel,
iio_uri,
classname,
device_name,
channel,
attr,
values,
tol,
repeats,
):
> test_attribute_multiple_values_device_channel(
iio_uri, classname, device_name, channel, attr, values, tol, repeats
)
test/test_ad7746.py:180:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:613: in attribute_multiple_values_device_channel
assert dev_interface_device_name_channel(
test/common.py:204: in dev_interface_device_name_channel
sdr = eval(
<string>:1: in <module>
???
adi/ad7746.py:22: in __init__
context_manager.__init__(self, uri, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad7746.ad7746 object at 0x7ff6b81b36a0>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad9084
github-actions / Test Results
test_ad9084_attr[rx_main_nco_frequencies--2000000000-2000000000-1-3-10-adi.ad9084] (test.test_ad9084) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad9084.ad9084 object at 0x7f7313a946a0>, uri = 'ip:10.1.0.81:30433'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7f7313adac40>
func = <_FuncPtr object at 0x7f7336cc5dc0>, arguments = (b'ip:10.1.0.81:30433',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_single_value = <function attribute_single_value at 0x7f731e10e0d0>
iio_uri = 'ip:10.1.0.81:30433', classname = 'adi.ad9084'
attr = 'rx_main_nco_frequencies', start = -2000000000, stop = 2000000000
step = 1, tol = 3, repeats = 10
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize(
"attr, start, stop, step, tol, repeats",
[
("rx_main_nco_frequencies", -2000000000, 2000000000, 1, 3, 10),
("tx_main_nco_frequencies", -6000000000, 6000000000, 1, 3, 10),
("rx_channel_nco_frequencies", -500000000, 500000000, 1, 3, 10),
("tx_channel_nco_frequencies", -750000000, 750000000, 1, 3, 10),
("rx_main_nco_phases", -180000, 180000, 1, 1, 10),
("tx_main_nco_phases", -180000, 180000, 1, 1, 10),
("rx_channel_nco_phases", -180000, 180000, 1, 1, 10),
("tx_channel_nco_phases", -180000, 180000, 1, 1, 10),
("tx_main_nco_test_tone_scales", 0.0, 1.0, 0.01, 0.01, 10),
("tx_channel_nco_test_tone_scales", 0.0, 1.0, 0.01, 0.01, 10),
],
)
def test_ad9084_attr(
test_attribute_single_value,
iio_uri,
classname,
attr,
start,
stop,
step,
tol,
repeats,
):
> test_attribute_single_value(
iio_uri, classname, attr, start, stop, step, tol, repeats
)
test/test_ad9084.py:83:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:70: in attribute_single_value
assert dev_interface(uri, classname, val, attr, tol)
test/common.py:103: in dev_interface
sdr = eval(classname + "(uri='" + uri + "')")
<string>:1: in <module>
???
adi/ad9084.py:85: in __init__
context_manager.__init__(self, uri, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad9084.ad9084 object at 0x7f7313a946a0>, uri = 'ip:10.1.0.81:30433'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad9364_p
github-actions / Test Results
test_ad9364_attr[tx_hardwaregain_chan0--89.75-0.0-0.25-0-adi.ad9364] (test.test_ad9364_p) failed
results.xml [took 3s]
Raw output
Exception: No device found
self = <adi.ad936x.ad9364 object at 0x7f5bacc082b0>, uri = 'ip:10.1.0.81:30434'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7f5baccbb5c0>
func = <_FuncPtr object at 0x7f5bcbcacdc0>, arguments = (b'ip:10.1.0.81:30434',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_single_value = <function attribute_single_value at 0x7f5bb70f40d0>
iio_uri = 'ip:10.1.0.81:30434', classname = 'adi.ad9364'
attr = 'tx_hardwaregain_chan0', start = -89.75, stop = 0.0, step = 0.25, tol = 0
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize(
"attr, start, stop, step, tol",
[
("tx_hardwaregain_chan0", -89.75, 0.0, 0.25, 0),
("rx_lo", 70000000, 6000000000, 1, 8),
("tx_lo", 47000000, 6000000000, 1, 8),
("sample_rate", 2084000, 61440000, 1, 4),
("loopback", 0, 0, 1, 0),
("loopback", 1, 1, 1, 0),
("loopback", 2, 2, 1, 0),
],
)
def test_ad9364_attr(
test_attribute_single_value, iio_uri, classname, attr, start, stop, step, tol
):
> test_attribute_single_value(iio_uri, classname, attr, start, stop, step, tol)
test/test_ad9364_p.py:113:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:70: in attribute_single_value
assert dev_interface(uri, classname, val, attr, tol)
test/common.py:103: in dev_interface
sdr = eval(classname + "(uri='" + uri + "')")
<string>:1: in <module>
???
adi/rx_tx.py:734: in __init__
rx_def.__init__(self, *args, **kwargs)
adi/rx_tx.py:653: in __init__
shared_def.__init__(self, *args, **kwargs)
adi/rx_tx.py:603: in __init__
context_manager.__init__(self, uri_ctx, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad936x.ad9364 object at 0x7f5bacc082b0>, uri = 'ip:10.1.0.81:30434'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad2s1210
github-actions / Test Results
test_ad2s1210_attr[excitation_frequency-2000-20000-250-1-10-adi.ad2s1210] (test.test_ad2s1210) failed
results.xml [took 3s]
Raw output
AttributeError: 'NoneType' object has no attribute 'channels'
test_attribute_single_value = <function attribute_single_value at 0x7f410c3530d0>
iio_uri = 'ip:10.1.0.81:30431', classname = 'adi.ad2s1210'
attr = 'excitation_frequency', start = 2000, stop = 20000, step = 250, tol = 1
repeats = 10
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [classname])
@pytest.mark.parametrize(
"attr, start, stop, step, tol, repeats",
[("excitation_frequency", 2000, 20000, 250, 1, 10),],
)
def test_ad2s1210_attr(
test_attribute_single_value,
iio_uri,
classname,
attr,
start,
stop,
step,
tol,
repeats,
):
> test_attribute_single_value(
iio_uri, classname, attr, start, stop, step, tol, repeats
)
test/test_ad2s1210.py:33:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:70: in attribute_single_value
assert dev_interface(uri, classname, val, attr, tol)
test/common.py:103: in dev_interface
sdr = eval(classname + "(uri='" + uri + "')")
<string>:1: in <module>
???
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad2s1210.ad2s1210 object at 0x7f4101e9b2e0>
uri = 'ip:10.1.0.81:30431'
def __init__(self, uri=""):
context_manager.__init__(self, uri, self._device_name)
self._rxadc = self._ctrl = self._ctx.find_device(self._device_name)
self._rx_channel_names = []
> for ch in self._ctrl.channels:
E AttributeError: 'NoneType' object has no attribute 'channels'
adi/ad2s1210.py:25: AttributeError
Check warning on line 0 in test.test_ad2s1210
github-actions / Test Results
test_ad2s1210_attr_boolean[hysteresis_enable-True-adi.ad2s1210] (test.test_ad2s1210) failed
results.xml [took 0s]
Raw output
AttributeError: 'NoneType' object has no attribute 'channels'
test_attribute_single_value_boolean = <function attribute_single_value_boolean at 0x7f410c353160>
iio_uri = 'ip:10.1.0.81:30431', classname = 'adi.ad2s1210'
attr = 'hysteresis_enable', value = True
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [classname])
@pytest.mark.parametrize(
"attr, value", [("hysteresis_enable", True), ("hysteresis_enable", False),],
)
def test_ad2s1210_attr_boolean(
test_attribute_single_value_boolean, iio_uri, classname, attr, value
):
> test_attribute_single_value_boolean(iio_uri, classname, attr, value)
test/test_ad2s1210.py:47:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:86: in attribute_single_value_boolean
bi = eval(classname + "(uri='" + uri + "')")
<string>:1: in <module>
???
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad2s1210.ad2s1210 object at 0x7f4101e92970>
uri = 'ip:10.1.0.81:30431'
def __init__(self, uri=""):
context_manager.__init__(self, uri, self._device_name)
self._rxadc = self._ctrl = self._ctx.find_device(self._device_name)
self._rx_channel_names = []
> for ch in self._ctrl.channels:
E AttributeError: 'NoneType' object has no attribute 'channels'
adi/ad2s1210.py:25: AttributeError
Check warning on line 0 in test.test_ad9084
github-actions / Test Results
test_ad9084_attr[tx_main_nco_frequencies--6000000000-6000000000-1-3-10-adi.ad9084] (test.test_ad9084) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad9084.ad9084 object at 0x7f73146fb4f0>, uri = 'ip:10.1.0.81:30433'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7f7313afcf40>
func = <_FuncPtr object at 0x7f7336cc5dc0>, arguments = (b'ip:10.1.0.81:30433',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_single_value = <function attribute_single_value at 0x7f731e10e0d0>
iio_uri = 'ip:10.1.0.81:30433', classname = 'adi.ad9084'
attr = 'tx_main_nco_frequencies', start = -6000000000, stop = 6000000000
step = 1, tol = 3, repeats = 10
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize(
"attr, start, stop, step, tol, repeats",
[
("rx_main_nco_frequencies", -2000000000, 2000000000, 1, 3, 10),
("tx_main_nco_frequencies", -6000000000, 6000000000, 1, 3, 10),
("rx_channel_nco_frequencies", -500000000, 500000000, 1, 3, 10),
("tx_channel_nco_frequencies", -750000000, 750000000, 1, 3, 10),
("rx_main_nco_phases", -180000, 180000, 1, 1, 10),
("tx_main_nco_phases", -180000, 180000, 1, 1, 10),
("rx_channel_nco_phases", -180000, 180000, 1, 1, 10),
("tx_channel_nco_phases", -180000, 180000, 1, 1, 10),
("tx_main_nco_test_tone_scales", 0.0, 1.0, 0.01, 0.01, 10),
("tx_channel_nco_test_tone_scales", 0.0, 1.0, 0.01, 0.01, 10),
],
)
def test_ad9084_attr(
test_attribute_single_value,
iio_uri,
classname,
attr,
start,
stop,
step,
tol,
repeats,
):
> test_attribute_single_value(
iio_uri, classname, attr, start, stop, step, tol, repeats
)
test/test_ad9084.py:83:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:70: in attribute_single_value
assert dev_interface(uri, classname, val, attr, tol)
test/common.py:103: in dev_interface
sdr = eval(classname + "(uri='" + uri + "')")
<string>:1: in <module>
???
adi/ad9084.py:85: in __init__
context_manager.__init__(self, uri, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad9084.ad9084 object at 0x7f73146fb4f0>, uri = 'ip:10.1.0.81:30433'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad2s1210
github-actions / Test Results
test_ad2s1210_attr_boolean[hysteresis_enable-False-adi.ad2s1210] (test.test_ad2s1210) failed
results.xml [took 0s]
Raw output
AttributeError: 'NoneType' object has no attribute 'channels'
test_attribute_single_value_boolean = <function attribute_single_value_boolean at 0x7f410c353160>
iio_uri = 'ip:10.1.0.81:30431', classname = 'adi.ad2s1210'
attr = 'hysteresis_enable', value = False
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [classname])
@pytest.mark.parametrize(
"attr, value", [("hysteresis_enable", True), ("hysteresis_enable", False),],
)
def test_ad2s1210_attr_boolean(
test_attribute_single_value_boolean, iio_uri, classname, attr, value
):
> test_attribute_single_value_boolean(iio_uri, classname, attr, value)
test/test_ad2s1210.py:47:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:86: in attribute_single_value_boolean
bi = eval(classname + "(uri='" + uri + "')")
<string>:1: in <module>
???
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad2s1210.ad2s1210 object at 0x7f4101e96f70>
uri = 'ip:10.1.0.81:30431'
def __init__(self, uri=""):
context_manager.__init__(self, uri, self._device_name)
self._rxadc = self._ctrl = self._ctx.find_device(self._device_name)
self._rx_channel_names = []
> for ch in self._ctrl.channels:
E AttributeError: 'NoneType' object has no attribute 'channels'
adi/ad2s1210.py:25: AttributeError
Check warning on line 0 in test.test_ad7746
github-actions / Test Results
test_ad7746_attr_multiple_val[capacitance0-sampling_frequency-values2-0.5-2-ad7746-adi.ad7746] (test.test_ad7746) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad7746.ad7746 object at 0x7ff6b81bd8e0>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7ff6b80ddcc0>
func = <_FuncPtr object at 0x7ff6db2e2dc0>, arguments = (b'ip:10.1.0.81:30432',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_multiple_values_device_channel = <function attribute_multiple_values_device_channel at 0x7ff6c2716940>
iio_uri = 'ip:10.1.0.81:30432', classname = 'adi.ad7746', device_name = 'ad7746'
channel = 'capacitance0', attr = 'sampling_frequency'
values = ['91', '84', '50', '26', '16', '13', ...], tol = 0.5, repeats = 2
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize("device_name", [(device_name)])
@pytest.mark.parametrize(
"channel, attr, values, tol, repeats",
[
(VIN, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(VIN_VDD, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(
CIN1,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN1_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(CIN1, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1, "offset", ["8127504"], 1, 2),
(CIN2, "offset", ["8127504"], 1, 2),
(CIN1, "offset", ["7111566"], 1, 2),
(CIN2, "offset", ["7111566"], 1, 2),
(CIN1, "offset", ["5079690"], 1, 2),
(CIN2, "offset", ["5079690"], 1, 2),
],
)
def test_ad7746_attr_multiple_val(
test_attribute_multiple_values_device_channel,
iio_uri,
classname,
device_name,
channel,
attr,
values,
tol,
repeats,
):
> test_attribute_multiple_values_device_channel(
iio_uri, classname, device_name, channel, attr, values, tol, repeats
)
test/test_ad7746.py:180:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:613: in attribute_multiple_values_device_channel
assert dev_interface_device_name_channel(
test/common.py:204: in dev_interface_device_name_channel
sdr = eval(
<string>:1: in <module>
???
adi/ad7746.py:22: in __init__
context_manager.__init__(self, uri, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad7746.ad7746 object at 0x7ff6b81bd8e0>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad9364_p
github-actions / Test Results
test_ad9364_attr[rx_lo-70000000-6000000000-1-8-adi.ad9364] (test.test_ad9364_p) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad936x.ad9364 object at 0x7f5bacb82790>, uri = 'ip:10.1.0.81:30434'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7f5bacb451c0>
func = <_FuncPtr object at 0x7f5bcbcacdc0>, arguments = (b'ip:10.1.0.81:30434',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_single_value = <function attribute_single_value at 0x7f5bb70f40d0>
iio_uri = 'ip:10.1.0.81:30434', classname = 'adi.ad9364', attr = 'rx_lo'
start = 70000000, stop = 6000000000, step = 1, tol = 8
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize(
"attr, start, stop, step, tol",
[
("tx_hardwaregain_chan0", -89.75, 0.0, 0.25, 0),
("rx_lo", 70000000, 6000000000, 1, 8),
("tx_lo", 47000000, 6000000000, 1, 8),
("sample_rate", 2084000, 61440000, 1, 4),
("loopback", 0, 0, 1, 0),
("loopback", 1, 1, 1, 0),
("loopback", 2, 2, 1, 0),
],
)
def test_ad9364_attr(
test_attribute_single_value, iio_uri, classname, attr, start, stop, step, tol
):
> test_attribute_single_value(iio_uri, classname, attr, start, stop, step, tol)
test/test_ad9364_p.py:113:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:70: in attribute_single_value
assert dev_interface(uri, classname, val, attr, tol)
test/common.py:103: in dev_interface
sdr = eval(classname + "(uri='" + uri + "')")
<string>:1: in <module>
???
adi/rx_tx.py:734: in __init__
rx_def.__init__(self, *args, **kwargs)
adi/rx_tx.py:653: in __init__
shared_def.__init__(self, *args, **kwargs)
adi/rx_tx.py:603: in __init__
context_manager.__init__(self, uri_ctx, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad936x.ad9364 object at 0x7f5bacb82790>, uri = 'ip:10.1.0.81:30434'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad9084
github-actions / Test Results
test_ad9084_attr[rx_channel_nco_frequencies--500000000-500000000-1-3-10-adi.ad9084] (test.test_ad9084) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad9084.ad9084 object at 0x7f7313a67490>, uri = 'ip:10.1.0.81:30433'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7f7313afce40>
func = <_FuncPtr object at 0x7f7336cc5dc0>, arguments = (b'ip:10.1.0.81:30433',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_single_value = <function attribute_single_value at 0x7f731e10e0d0>
iio_uri = 'ip:10.1.0.81:30433', classname = 'adi.ad9084'
attr = 'rx_channel_nco_frequencies', start = -500000000, stop = 500000000
step = 1, tol = 3, repeats = 10
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize(
"attr, start, stop, step, tol, repeats",
[
("rx_main_nco_frequencies", -2000000000, 2000000000, 1, 3, 10),
("tx_main_nco_frequencies", -6000000000, 6000000000, 1, 3, 10),
("rx_channel_nco_frequencies", -500000000, 500000000, 1, 3, 10),
("tx_channel_nco_frequencies", -750000000, 750000000, 1, 3, 10),
("rx_main_nco_phases", -180000, 180000, 1, 1, 10),
("tx_main_nco_phases", -180000, 180000, 1, 1, 10),
("rx_channel_nco_phases", -180000, 180000, 1, 1, 10),
("tx_channel_nco_phases", -180000, 180000, 1, 1, 10),
("tx_main_nco_test_tone_scales", 0.0, 1.0, 0.01, 0.01, 10),
("tx_channel_nco_test_tone_scales", 0.0, 1.0, 0.01, 0.01, 10),
],
)
def test_ad9084_attr(
test_attribute_single_value,
iio_uri,
classname,
attr,
start,
stop,
step,
tol,
repeats,
):
> test_attribute_single_value(
iio_uri, classname, attr, start, stop, step, tol, repeats
)
test/test_ad9084.py:83:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:70: in attribute_single_value
assert dev_interface(uri, classname, val, attr, tol)
test/common.py:103: in dev_interface
sdr = eval(classname + "(uri='" + uri + "')")
<string>:1: in <module>
???
adi/ad9084.py:85: in __init__
context_manager.__init__(self, uri, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad9084.ad9084 object at 0x7f7313a67490>, uri = 'ip:10.1.0.81:30433'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad7746
github-actions / Test Results
test_ad7746_attr_multiple_val[capacitance0-capacitance2-sampling_frequency-values3-0.5-2-ad7746-adi.ad7746] (test.test_ad7746) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad7746.ad7746 object at 0x7ff6b817fb80>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7ff6b81cfec0>
func = <_FuncPtr object at 0x7ff6db2e2dc0>, arguments = (b'ip:10.1.0.81:30432',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_multiple_values_device_channel = <function attribute_multiple_values_device_channel at 0x7ff6c2716940>
iio_uri = 'ip:10.1.0.81:30432', classname = 'adi.ad7746', device_name = 'ad7746'
channel = 'capacitance0-capacitance2', attr = 'sampling_frequency'
values = ['91', '84', '50', '26', '16', '13', ...], tol = 0.5, repeats = 2
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize("device_name", [(device_name)])
@pytest.mark.parametrize(
"channel, attr, values, tol, repeats",
[
(VIN, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(VIN_VDD, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(
CIN1,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN1_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(CIN1, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1, "offset", ["8127504"], 1, 2),
(CIN2, "offset", ["8127504"], 1, 2),
(CIN1, "offset", ["7111566"], 1, 2),
(CIN2, "offset", ["7111566"], 1, 2),
(CIN1, "offset", ["5079690"], 1, 2),
(CIN2, "offset", ["5079690"], 1, 2),
],
)
def test_ad7746_attr_multiple_val(
test_attribute_multiple_values_device_channel,
iio_uri,
classname,
device_name,
channel,
attr,
values,
tol,
repeats,
):
> test_attribute_multiple_values_device_channel(
iio_uri, classname, device_name, channel, attr, values, tol, repeats
)
test/test_ad7746.py:180:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:613: in attribute_multiple_values_device_channel
assert dev_interface_device_name_channel(
test/common.py:204: in dev_interface_device_name_channel
sdr = eval(
<string>:1: in <module>
???
adi/ad7746.py:22: in __init__
context_manager.__init__(self, uri, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad7746.ad7746 object at 0x7ff6b817fb80>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad9084
github-actions / Test Results
test_ad9084_attr[tx_channel_nco_frequencies--750000000-750000000-1-3-10-adi.ad9084] (test.test_ad9084) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad9084.ad9084 object at 0x7f7313aaf640>, uri = 'ip:10.1.0.81:30433'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7f7313c08cc0>
func = <_FuncPtr object at 0x7f7336cc5dc0>, arguments = (b'ip:10.1.0.81:30433',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_single_value = <function attribute_single_value at 0x7f731e10e0d0>
iio_uri = 'ip:10.1.0.81:30433', classname = 'adi.ad9084'
attr = 'tx_channel_nco_frequencies', start = -750000000, stop = 750000000
step = 1, tol = 3, repeats = 10
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize(
"attr, start, stop, step, tol, repeats",
[
("rx_main_nco_frequencies", -2000000000, 2000000000, 1, 3, 10),
("tx_main_nco_frequencies", -6000000000, 6000000000, 1, 3, 10),
("rx_channel_nco_frequencies", -500000000, 500000000, 1, 3, 10),
("tx_channel_nco_frequencies", -750000000, 750000000, 1, 3, 10),
("rx_main_nco_phases", -180000, 180000, 1, 1, 10),
("tx_main_nco_phases", -180000, 180000, 1, 1, 10),
("rx_channel_nco_phases", -180000, 180000, 1, 1, 10),
("tx_channel_nco_phases", -180000, 180000, 1, 1, 10),
("tx_main_nco_test_tone_scales", 0.0, 1.0, 0.01, 0.01, 10),
("tx_channel_nco_test_tone_scales", 0.0, 1.0, 0.01, 0.01, 10),
],
)
def test_ad9084_attr(
test_attribute_single_value,
iio_uri,
classname,
attr,
start,
stop,
step,
tol,
repeats,
):
> test_attribute_single_value(
iio_uri, classname, attr, start, stop, step, tol, repeats
)
test/test_ad9084.py:83:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:70: in attribute_single_value
assert dev_interface(uri, classname, val, attr, tol)
test/common.py:103: in dev_interface
sdr = eval(classname + "(uri='" + uri + "')")
<string>:1: in <module>
???
adi/ad9084.py:85: in __init__
context_manager.__init__(self, uri, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad9084.ad9084 object at 0x7f7313aaf640>, uri = 'ip:10.1.0.81:30433'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad7746
github-actions / Test Results
test_ad7746_attr_multiple_val[capacitance1-sampling_frequency-values4-0.5-2-ad7746-adi.ad7746] (test.test_ad7746) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad7746.ad7746 object at 0x7ff6b8d49880>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7ff6b81cf240>
func = <_FuncPtr object at 0x7ff6db2e2dc0>, arguments = (b'ip:10.1.0.81:30432',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_multiple_values_device_channel = <function attribute_multiple_values_device_channel at 0x7ff6c2716940>
iio_uri = 'ip:10.1.0.81:30432', classname = 'adi.ad7746', device_name = 'ad7746'
channel = 'capacitance1', attr = 'sampling_frequency'
values = ['91', '84', '50', '26', '16', '13', ...], tol = 0.5, repeats = 2
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize("device_name", [(device_name)])
@pytest.mark.parametrize(
"channel, attr, values, tol, repeats",
[
(VIN, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(VIN_VDD, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(
CIN1,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN1_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(CIN1, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1, "offset", ["8127504"], 1, 2),
(CIN2, "offset", ["8127504"], 1, 2),
(CIN1, "offset", ["7111566"], 1, 2),
(CIN2, "offset", ["7111566"], 1, 2),
(CIN1, "offset", ["5079690"], 1, 2),
(CIN2, "offset", ["5079690"], 1, 2),
],
)
def test_ad7746_attr_multiple_val(
test_attribute_multiple_values_device_channel,
iio_uri,
classname,
device_name,
channel,
attr,
values,
tol,
repeats,
):
> test_attribute_multiple_values_device_channel(
iio_uri, classname, device_name, channel, attr, values, tol, repeats
)
test/test_ad7746.py:180:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:613: in attribute_multiple_values_device_channel
assert dev_interface_device_name_channel(
test/common.py:204: in dev_interface_device_name_channel
sdr = eval(
<string>:1: in <module>
???
adi/ad7746.py:22: in __init__
context_manager.__init__(self, uri, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad7746.ad7746 object at 0x7ff6b8d49880>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad9364_p
github-actions / Test Results
test_ad9364_attr[tx_lo-47000000-6000000000-1-8-adi.ad9364] (test.test_ad9364_p) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad936x.ad9364 object at 0x7f5bacb65370>, uri = 'ip:10.1.0.81:30434'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7f5bacbd33c0>
func = <_FuncPtr object at 0x7f5bcbcacdc0>, arguments = (b'ip:10.1.0.81:30434',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_single_value = <function attribute_single_value at 0x7f5bb70f40d0>
iio_uri = 'ip:10.1.0.81:30434', classname = 'adi.ad9364', attr = 'tx_lo'
start = 47000000, stop = 6000000000, step = 1, tol = 8
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize(
"attr, start, stop, step, tol",
[
("tx_hardwaregain_chan0", -89.75, 0.0, 0.25, 0),
("rx_lo", 70000000, 6000000000, 1, 8),
("tx_lo", 47000000, 6000000000, 1, 8),
("sample_rate", 2084000, 61440000, 1, 4),
("loopback", 0, 0, 1, 0),
("loopback", 1, 1, 1, 0),
("loopback", 2, 2, 1, 0),
],
)
def test_ad9364_attr(
test_attribute_single_value, iio_uri, classname, attr, start, stop, step, tol
):
> test_attribute_single_value(iio_uri, classname, attr, start, stop, step, tol)
test/test_ad9364_p.py:113:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:70: in attribute_single_value
assert dev_interface(uri, classname, val, attr, tol)
test/common.py:103: in dev_interface
sdr = eval(classname + "(uri='" + uri + "')")
<string>:1: in <module>
???
adi/rx_tx.py:734: in __init__
rx_def.__init__(self, *args, **kwargs)
adi/rx_tx.py:653: in __init__
shared_def.__init__(self, *args, **kwargs)
adi/rx_tx.py:603: in __init__
context_manager.__init__(self, uri_ctx, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad936x.ad9364 object at 0x7f5bacb65370>, uri = 'ip:10.1.0.81:30434'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad7746
github-actions / Test Results
test_ad7746_attr_multiple_val[capacitance1-capacitance3-sampling_frequency-values5-0.5-2-ad7746-adi.ad7746] (test.test_ad7746) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad7746.ad7746 object at 0x7ff6b8122bb0>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7ff6b81a1ec0>
func = <_FuncPtr object at 0x7ff6db2e2dc0>, arguments = (b'ip:10.1.0.81:30432',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_multiple_values_device_channel = <function attribute_multiple_values_device_channel at 0x7ff6c2716940>
iio_uri = 'ip:10.1.0.81:30432', classname = 'adi.ad7746', device_name = 'ad7746'
channel = 'capacitance1-capacitance3', attr = 'sampling_frequency'
values = ['91', '84', '50', '26', '16', '13', ...], tol = 0.5, repeats = 2
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize("device_name", [(device_name)])
@pytest.mark.parametrize(
"channel, attr, values, tol, repeats",
[
(VIN, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(VIN_VDD, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(
CIN1,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN1_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(CIN1, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1, "offset", ["8127504"], 1, 2),
(CIN2, "offset", ["8127504"], 1, 2),
(CIN1, "offset", ["7111566"], 1, 2),
(CIN2, "offset", ["7111566"], 1, 2),
(CIN1, "offset", ["5079690"], 1, 2),
(CIN2, "offset", ["5079690"], 1, 2),
],
)
def test_ad7746_attr_multiple_val(
test_attribute_multiple_values_device_channel,
iio_uri,
classname,
device_name,
channel,
attr,
values,
tol,
repeats,
):
> test_attribute_multiple_values_device_channel(
iio_uri, classname, device_name, channel, attr, values, tol, repeats
)
test/test_ad7746.py:180:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:613: in attribute_multiple_values_device_channel
assert dev_interface_device_name_channel(
test/common.py:204: in dev_interface_device_name_channel
sdr = eval(
<string>:1: in <module>
???
adi/ad7746.py:22: in __init__
context_manager.__init__(self, uri, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad7746.ad7746 object at 0x7ff6b8122bb0>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad9084
github-actions / Test Results
test_ad9084_attr[rx_main_nco_phases--180000-180000-1-1-10-adi.ad9084] (test.test_ad9084) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad9084.ad9084 object at 0x7f7313b5d790>, uri = 'ip:10.1.0.81:30433'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7f7313be6e40>
func = <_FuncPtr object at 0x7f7336cc5dc0>, arguments = (b'ip:10.1.0.81:30433',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_single_value = <function attribute_single_value at 0x7f731e10e0d0>
iio_uri = 'ip:10.1.0.81:30433', classname = 'adi.ad9084'
attr = 'rx_main_nco_phases', start = -180000, stop = 180000, step = 1, tol = 1
repeats = 10
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize(
"attr, start, stop, step, tol, repeats",
[
("rx_main_nco_frequencies", -2000000000, 2000000000, 1, 3, 10),
("tx_main_nco_frequencies", -6000000000, 6000000000, 1, 3, 10),
("rx_channel_nco_frequencies", -500000000, 500000000, 1, 3, 10),
("tx_channel_nco_frequencies", -750000000, 750000000, 1, 3, 10),
("rx_main_nco_phases", -180000, 180000, 1, 1, 10),
("tx_main_nco_phases", -180000, 180000, 1, 1, 10),
("rx_channel_nco_phases", -180000, 180000, 1, 1, 10),
("tx_channel_nco_phases", -180000, 180000, 1, 1, 10),
("tx_main_nco_test_tone_scales", 0.0, 1.0, 0.01, 0.01, 10),
("tx_channel_nco_test_tone_scales", 0.0, 1.0, 0.01, 0.01, 10),
],
)
def test_ad9084_attr(
test_attribute_single_value,
iio_uri,
classname,
attr,
start,
stop,
step,
tol,
repeats,
):
> test_attribute_single_value(
iio_uri, classname, attr, start, stop, step, tol, repeats
)
test/test_ad9084.py:83:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:70: in attribute_single_value
assert dev_interface(uri, classname, val, attr, tol)
test/common.py:103: in dev_interface
sdr = eval(classname + "(uri='" + uri + "')")
<string>:1: in <module>
???
adi/ad9084.py:85: in __init__
context_manager.__init__(self, uri, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad9084.ad9084 object at 0x7f7313b5d790>, uri = 'ip:10.1.0.81:30433'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad7746
github-actions / Test Results
test_ad7746_attr_multiple_val[capacitance0-calibbias-values6-0.5-2-ad7746-adi.ad7746] (test.test_ad7746) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad7746.ad7746 object at 0x7ff6b81d6640>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7ff6b81a1240>
func = <_FuncPtr object at 0x7ff6db2e2dc0>, arguments = (b'ip:10.1.0.81:30432',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_multiple_values_device_channel = <function attribute_multiple_values_device_channel at 0x7ff6c2716940>
iio_uri = 'ip:10.1.0.81:30432', classname = 'adi.ad7746', device_name = 'ad7746'
channel = 'capacitance0', attr = 'calibbias', values = [0, 62745, 125, 50]
tol = 0.5, repeats = 2
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize("device_name", [(device_name)])
@pytest.mark.parametrize(
"channel, attr, values, tol, repeats",
[
(VIN, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(VIN_VDD, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(
CIN1,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN1_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(CIN1, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1, "offset", ["8127504"], 1, 2),
(CIN2, "offset", ["8127504"], 1, 2),
(CIN1, "offset", ["7111566"], 1, 2),
(CIN2, "offset", ["7111566"], 1, 2),
(CIN1, "offset", ["5079690"], 1, 2),
(CIN2, "offset", ["5079690"], 1, 2),
],
)
def test_ad7746_attr_multiple_val(
test_attribute_multiple_values_device_channel,
iio_uri,
classname,
device_name,
channel,
attr,
values,
tol,
repeats,
):
> test_attribute_multiple_values_device_channel(
iio_uri, classname, device_name, channel, attr, values, tol, repeats
)
test/test_ad7746.py:180:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:613: in attribute_multiple_values_device_channel
assert dev_interface_device_name_channel(
test/common.py:204: in dev_interface_device_name_channel
sdr = eval(
<string>:1: in <module>
???
adi/ad7746.py:22: in __init__
context_manager.__init__(self, uri, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad7746.ad7746 object at 0x7ff6b81d6640>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad9364_p
github-actions / Test Results
test_ad9364_attr[sample_rate-2084000-61440000-1-4-adi.ad9364] (test.test_ad9364_p) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad936x.ad9364 object at 0x7f5bacbaec70>, uri = 'ip:10.1.0.81:30434'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7f5bac9c8dc0>
func = <_FuncPtr object at 0x7f5bcbcacdc0>, arguments = (b'ip:10.1.0.81:30434',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_single_value = <function attribute_single_value at 0x7f5bb70f40d0>
iio_uri = 'ip:10.1.0.81:30434', classname = 'adi.ad9364', attr = 'sample_rate'
start = 2084000, stop = 61440000, step = 1, tol = 4
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize(
"attr, start, stop, step, tol",
[
("tx_hardwaregain_chan0", -89.75, 0.0, 0.25, 0),
("rx_lo", 70000000, 6000000000, 1, 8),
("tx_lo", 47000000, 6000000000, 1, 8),
("sample_rate", 2084000, 61440000, 1, 4),
("loopback", 0, 0, 1, 0),
("loopback", 1, 1, 1, 0),
("loopback", 2, 2, 1, 0),
],
)
def test_ad9364_attr(
test_attribute_single_value, iio_uri, classname, attr, start, stop, step, tol
):
> test_attribute_single_value(iio_uri, classname, attr, start, stop, step, tol)
test/test_ad9364_p.py:113:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:70: in attribute_single_value
assert dev_interface(uri, classname, val, attr, tol)
test/common.py:103: in dev_interface
sdr = eval(classname + "(uri='" + uri + "')")
<string>:1: in <module>
???
adi/rx_tx.py:734: in __init__
rx_def.__init__(self, *args, **kwargs)
adi/rx_tx.py:653: in __init__
shared_def.__init__(self, *args, **kwargs)
adi/rx_tx.py:603: in __init__
context_manager.__init__(self, uri_ctx, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad936x.ad9364 object at 0x7f5bacbaec70>, uri = 'ip:10.1.0.81:30434'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad7746
github-actions / Test Results
test_ad7746_attr_multiple_val[capacitance0-capacitance2-calibbias-values7-0.5-2-ad7746-adi.ad7746] (test.test_ad7746) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad7746.ad7746 object at 0x7ff6b819b760>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7ff6b81d92c0>
func = <_FuncPtr object at 0x7ff6db2e2dc0>, arguments = (b'ip:10.1.0.81:30432',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_multiple_values_device_channel = <function attribute_multiple_values_device_channel at 0x7ff6c2716940>
iio_uri = 'ip:10.1.0.81:30432', classname = 'adi.ad7746', device_name = 'ad7746'
channel = 'capacitance0-capacitance2', attr = 'calibbias'
values = [0, 62745, 125, 50], tol = 0.5, repeats = 2
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize("device_name", [(device_name)])
@pytest.mark.parametrize(
"channel, attr, values, tol, repeats",
[
(VIN, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(VIN_VDD, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(
CIN1,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN1_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(CIN1, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1, "offset", ["8127504"], 1, 2),
(CIN2, "offset", ["8127504"], 1, 2),
(CIN1, "offset", ["7111566"], 1, 2),
(CIN2, "offset", ["7111566"], 1, 2),
(CIN1, "offset", ["5079690"], 1, 2),
(CIN2, "offset", ["5079690"], 1, 2),
],
)
def test_ad7746_attr_multiple_val(
test_attribute_multiple_values_device_channel,
iio_uri,
classname,
device_name,
channel,
attr,
values,
tol,
repeats,
):
> test_attribute_multiple_values_device_channel(
iio_uri, classname, device_name, channel, attr, values, tol, repeats
)
test/test_ad7746.py:180:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:613: in attribute_multiple_values_device_channel
assert dev_interface_device_name_channel(
test/common.py:204: in dev_interface_device_name_channel
sdr = eval(
<string>:1: in <module>
???
adi/ad7746.py:22: in __init__
context_manager.__init__(self, uri, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad7746.ad7746 object at 0x7ff6b819b760>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad9084
github-actions / Test Results
test_ad9084_attr[tx_main_nco_phases--180000-180000-1-1-10-adi.ad9084] (test.test_ad9084) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad9084.ad9084 object at 0x7f7313a8de50>, uri = 'ip:10.1.0.81:30433'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7f7313afce40>
func = <_FuncPtr object at 0x7f7336cc5dc0>, arguments = (b'ip:10.1.0.81:30433',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_single_value = <function attribute_single_value at 0x7f731e10e0d0>
iio_uri = 'ip:10.1.0.81:30433', classname = 'adi.ad9084'
attr = 'tx_main_nco_phases', start = -180000, stop = 180000, step = 1, tol = 1
repeats = 10
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize(
"attr, start, stop, step, tol, repeats",
[
("rx_main_nco_frequencies", -2000000000, 2000000000, 1, 3, 10),
("tx_main_nco_frequencies", -6000000000, 6000000000, 1, 3, 10),
("rx_channel_nco_frequencies", -500000000, 500000000, 1, 3, 10),
("tx_channel_nco_frequencies", -750000000, 750000000, 1, 3, 10),
("rx_main_nco_phases", -180000, 180000, 1, 1, 10),
("tx_main_nco_phases", -180000, 180000, 1, 1, 10),
("rx_channel_nco_phases", -180000, 180000, 1, 1, 10),
("tx_channel_nco_phases", -180000, 180000, 1, 1, 10),
("tx_main_nco_test_tone_scales", 0.0, 1.0, 0.01, 0.01, 10),
("tx_channel_nco_test_tone_scales", 0.0, 1.0, 0.01, 0.01, 10),
],
)
def test_ad9084_attr(
test_attribute_single_value,
iio_uri,
classname,
attr,
start,
stop,
step,
tol,
repeats,
):
> test_attribute_single_value(
iio_uri, classname, attr, start, stop, step, tol, repeats
)
test/test_ad9084.py:83:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:70: in attribute_single_value
assert dev_interface(uri, classname, val, attr, tol)
test/common.py:103: in dev_interface
sdr = eval(classname + "(uri='" + uri + "')")
<string>:1: in <module>
???
adi/ad9084.py:85: in __init__
context_manager.__init__(self, uri, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad9084.ad9084 object at 0x7f7313a8de50>, uri = 'ip:10.1.0.81:30433'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad7746
github-actions / Test Results
test_ad7746_attr_multiple_val[capacitance1-calibbias-values8-0.5-2-ad7746-adi.ad7746] (test.test_ad7746) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad7746.ad7746 object at 0x7ff6b81f3cd0>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7ff6b81d9940>
func = <_FuncPtr object at 0x7ff6db2e2dc0>, arguments = (b'ip:10.1.0.81:30432',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_multiple_values_device_channel = <function attribute_multiple_values_device_channel at 0x7ff6c2716940>
iio_uri = 'ip:10.1.0.81:30432', classname = 'adi.ad7746', device_name = 'ad7746'
channel = 'capacitance1', attr = 'calibbias', values = [0, 62745, 125, 50]
tol = 0.5, repeats = 2
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize("device_name", [(device_name)])
@pytest.mark.parametrize(
"channel, attr, values, tol, repeats",
[
(VIN, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(VIN_VDD, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(
CIN1,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN1_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(CIN1, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1, "offset", ["8127504"], 1, 2),
(CIN2, "offset", ["8127504"], 1, 2),
(CIN1, "offset", ["7111566"], 1, 2),
(CIN2, "offset", ["7111566"], 1, 2),
(CIN1, "offset", ["5079690"], 1, 2),
(CIN2, "offset", ["5079690"], 1, 2),
],
)
def test_ad7746_attr_multiple_val(
test_attribute_multiple_values_device_channel,
iio_uri,
classname,
device_name,
channel,
attr,
values,
tol,
repeats,
):
> test_attribute_multiple_values_device_channel(
iio_uri, classname, device_name, channel, attr, values, tol, repeats
)
test/test_ad7746.py:180:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:613: in attribute_multiple_values_device_channel
assert dev_interface_device_name_channel(
test/common.py:204: in dev_interface_device_name_channel
sdr = eval(
<string>:1: in <module>
???
adi/ad7746.py:22: in __init__
context_manager.__init__(self, uri, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad7746.ad7746 object at 0x7ff6b81f3cd0>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad9364_p
github-actions / Test Results
test_ad9364_attr[loopback-0-0-1-0-adi.ad9364] (test.test_ad9364_p) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad936x.ad9364 object at 0x7f5bacae08b0>, uri = 'ip:10.1.0.81:30434'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7f5bac9c8ac0>
func = <_FuncPtr object at 0x7f5bcbcacdc0>, arguments = (b'ip:10.1.0.81:30434',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_single_value = <function attribute_single_value at 0x7f5bb70f40d0>
iio_uri = 'ip:10.1.0.81:30434', classname = 'adi.ad9364', attr = 'loopback'
start = 0, stop = 0, step = 1, tol = 0
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize(
"attr, start, stop, step, tol",
[
("tx_hardwaregain_chan0", -89.75, 0.0, 0.25, 0),
("rx_lo", 70000000, 6000000000, 1, 8),
("tx_lo", 47000000, 6000000000, 1, 8),
("sample_rate", 2084000, 61440000, 1, 4),
("loopback", 0, 0, 1, 0),
("loopback", 1, 1, 1, 0),
("loopback", 2, 2, 1, 0),
],
)
def test_ad9364_attr(
test_attribute_single_value, iio_uri, classname, attr, start, stop, step, tol
):
> test_attribute_single_value(iio_uri, classname, attr, start, stop, step, tol)
test/test_ad9364_p.py:113:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:70: in attribute_single_value
assert dev_interface(uri, classname, val, attr, tol)
test/common.py:103: in dev_interface
sdr = eval(classname + "(uri='" + uri + "')")
<string>:1: in <module>
???
adi/rx_tx.py:734: in __init__
rx_def.__init__(self, *args, **kwargs)
adi/rx_tx.py:653: in __init__
shared_def.__init__(self, *args, **kwargs)
adi/rx_tx.py:603: in __init__
context_manager.__init__(self, uri_ctx, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad936x.ad9364 object at 0x7f5bacae08b0>, uri = 'ip:10.1.0.81:30434'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception
Check warning on line 0 in test.test_ad7746
github-actions / Test Results
test_ad7746_attr_multiple_val[capacitance1-capacitance3-calibbias-values9-0.5-2-ad7746-adi.ad7746] (test.test_ad7746) failed
results.xml [took 0s]
Raw output
Exception: No device found
self = <adi.ad7746.ad7746 object at 0x7ff6b81fad00>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
> self._ctx = iio.Context(self.uri)
adi/context_manager.py:36:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:1358: in __init__
self._context = _new_uri(_context.encode("ascii"))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
result = <iio.LP__Context object at 0x7ff6b81d96c0>
func = <_FuncPtr object at 0x7ff6db2e2dc0>, arguments = (b'ip:10.1.0.81:30432',)
def _check_null(result, func, arguments):
if result:
return result
err = get_last_error() if "Windows" in _system() else get_errno()
> raise OSError(err, _strerror(err))
E ConnectionRefusedError: [Errno 111] Connection refused
/opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/iio.py:56: ConnectionRefusedError
During handling of the above exception, another exception occurred:
test_attribute_multiple_values_device_channel = <function attribute_multiple_values_device_channel at 0x7ff6c2716940>
iio_uri = 'ip:10.1.0.81:30432', classname = 'adi.ad7746', device_name = 'ad7746'
channel = 'capacitance1-capacitance3', attr = 'calibbias'
values = [0, 62745, 125, 50], tol = 0.5, repeats = 2
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize("device_name", [(device_name)])
@pytest.mark.parametrize(
"channel, attr, values, tol, repeats",
[
(VIN, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(VIN_VDD, "sampling_frequency", ["50", "31", "16", "8"], 0.5, 2),
(
CIN1,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN1_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(
CIN2_DIFF,
"sampling_frequency",
["91", "84", "50", "26", "16", "13", "11", "9"],
0.5,
2,
),
(CIN1, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN2_DIFF, "calibbias", [0, 62745, 125, 50], 0.5, 2),
(CIN1, "offset", ["8127504"], 1, 2),
(CIN2, "offset", ["8127504"], 1, 2),
(CIN1, "offset", ["7111566"], 1, 2),
(CIN2, "offset", ["7111566"], 1, 2),
(CIN1, "offset", ["5079690"], 1, 2),
(CIN2, "offset", ["5079690"], 1, 2),
],
)
def test_ad7746_attr_multiple_val(
test_attribute_multiple_values_device_channel,
iio_uri,
classname,
device_name,
channel,
attr,
values,
tol,
repeats,
):
> test_attribute_multiple_values_device_channel(
iio_uri, classname, device_name, channel, attr, values, tol, repeats
)
test/test_ad7746.py:180:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test/attr_tests.py:613: in attribute_multiple_values_device_channel
assert dev_interface_device_name_channel(
test/common.py:204: in dev_interface_device_name_channel
sdr = eval(
<string>:1: in <module>
???
adi/ad7746.py:22: in __init__
context_manager.__init__(self, uri, self._device_name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <adi.ad7746.ad7746 object at 0x7ff6b81fad00>, uri = 'ip:10.1.0.81:30432'
_device_name = ''
def __init__(self, uri="", _device_name=""):
if self._ctx:
return
self.uri = uri
try:
if self.uri == "":
# Try USB contexts first
if _device_name != "":
contexts = iio.scan_contexts()
for c in contexts:
if _device_name in contexts[c]:
self._ctx = iio.Context(c)
break
# Try auto discover
if not self._ctx and self._uri_auto != "":
self._ctx = iio.Context(self._uri_auto)
if not self._ctx:
raise Exception("No device found")
else:
self._ctx = iio.Context(self.uri)
except BaseException:
> raise Exception("No device found")
E Exception: No device found
adi/context_manager.py:38: Exception