We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c394838 + 601db52 commit b1e6823Copy full SHA for b1e6823
tests/component/system/test_physical_channel_properties.py
@@ -1,3 +1,5 @@
1
+import sys
2
+
3
import numpy
4
import pytest
5
@@ -83,12 +85,14 @@ def test___physical_channel_with_teds___get_uint32_property___returns_configured
83
85
assert phys_chan.teds_mfg_id == 17
84
86
87
88
+@pytest.mark.skipif(not sys.platform.startswith("win"), reason="mioDAQ support Windows-only")
89
def test___physical_channel___get_int32_property___returns_value():
90
phys_chans = PhysicalChannel("mioDAQ/port0")
91
92
assert phys_chans.dig_port_logic_family in LogicFamily
93
94
95
96
@pytest.mark.library_only(
97
reason="AB#2375679: gRPC interpreter doesn't support setting physical channel property."
98
)
0 commit comments