Skip to content

Commit 8a7b1d0

Browse files
authored
Fix #1424 (#1425)
1 parent a344a13 commit 8a7b1d0

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

test/test_vector.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import ctypes
88
import functools
99
import pickle
10+
import sys
1011
import time
1112
from unittest.mock import Mock
1213

@@ -587,6 +588,9 @@ def test_vector_subtype_error_from_generic() -> None:
587588
raise specific
588589

589590

591+
@pytest.mark.skipif(
592+
sys.byteorder != "little", reason="Test relies on little endian data."
593+
)
590594
def test_get_channel_configs() -> None:
591595
_original_func = canlib._get_xl_driver_config
592596
canlib._get_xl_driver_config = _get_predefined_xl_driver_config

0 commit comments

Comments
 (0)