Skip to content

Commit 884caed

Browse files
committed
Merge branch 'fix/test_script_error_in_bt_example' into 'master'
fix(bt): remove redundant space in hid example path See merge request espressif/esp-idf!32839
2 parents 5929eed + 9a2e2f9 commit 884caed

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

examples/bluetooth/.build-test-rules.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,14 @@ examples/bluetooth/esp_ble_mesh/wifi_coexist:
109109
depends_filepatterns:
110110
- examples/bluetooth/esp_ble_mesh/common_components/**/*
111111

112+
examples/bluetooth/esp_hid_host:
113+
disable_test:
114+
- if: IDF_TARGET in ["esp32c2", "esp32c3", "esp32c5", "esp32c6", "esp32h2", "esp32s3"]
115+
temporary: true
116+
reason: temporarily test esp32
117+
disable:
118+
- if: SOC_BT_SUPPORTED != 1
119+
112120
examples/bluetooth/hci:
113121
<<: *bt_default_depends
114122
enable:

examples/bluetooth/bluedroid/classic_bt/pytest_classic_bt_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ def test_bt_hfp(app_path: str, dut: Tuple[IdfDut, IdfDut]) -> None:
114114
@pytest.mark.parametrize(
115115
'count, app_path, target, config', [
116116
(2,
117-
f'{os.path.join(os.path.dirname(__file__), "bt_hid_mouse_device")}| \
118-
{os.path.join(os.path.abspath(os.path.join(os.path.dirname(__file__), "../..")), "esp_hid_host")}',
117+
f'{os.path.join(os.path.dirname(__file__), "bt_hid_mouse_device")}|'
118+
f'{os.path.join(os.path.abspath(os.path.join(os.path.dirname(__file__), "../..")), "esp_hid_host")}',
119119
'esp32|esp32', 'test'),
120120
],
121121
indirect=True,

0 commit comments

Comments
 (0)