We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88f36bb commit 1c80d79Copy full SHA for 1c80d79
scripts/west_commands/tests/test_bossac.py
@@ -4,11 +4,17 @@
4
# SPDX-License-Identifier: Apache-2.0
5
6
import argparse
7
+import platform
8
from unittest.mock import patch, call
9
10
+import pytest
11
+
12
from runners.bossac import BossacBinaryRunner
13
from conftest import RC_KERNEL_BIN
14
15
+if platform.system() != 'Linux':
16
+ pytest.skip("skipping Linux-only bossac tests", allow_module_level=True)
17
18
TEST_BOSSAC_PORT = 'test-bossac-serial'
19
TEST_OFFSET = 1234
20
EXPECTED_COMMANDS = [
0 commit comments