We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a344a13 commit 8a7b1d0Copy full SHA for 8a7b1d0
1 file changed
test/test_vector.py
@@ -7,6 +7,7 @@
7
import ctypes
8
import functools
9
import pickle
10
+import sys
11
import time
12
from unittest.mock import Mock
13
@@ -587,6 +588,9 @@ def test_vector_subtype_error_from_generic() -> None:
587
588
raise specific
589
590
591
+@pytest.mark.skipif(
592
+ sys.byteorder != "little", reason="Test relies on little endian data."
593
+)
594
def test_get_channel_configs() -> None:
595
_original_func = canlib._get_xl_driver_config
596
canlib._get_xl_driver_config = _get_predefined_xl_driver_config
0 commit comments