diff --git a/examples/bluetooth/bluedroid/classic_bt/a2dp_sink/sdkconfig.ci.defaults b/examples/bluetooth/bluedroid/classic_bt/a2dp_sink/sdkconfig.ci.test similarity index 100% rename from examples/bluetooth/bluedroid/classic_bt/a2dp_sink/sdkconfig.ci.defaults rename to examples/bluetooth/bluedroid/classic_bt/a2dp_sink/sdkconfig.ci.test diff --git a/examples/bluetooth/bluedroid/classic_bt/a2dp_source/sdkconfig.ci.defaults b/examples/bluetooth/bluedroid/classic_bt/a2dp_source/sdkconfig.ci.test similarity index 100% rename from examples/bluetooth/bluedroid/classic_bt/a2dp_source/sdkconfig.ci.defaults rename to examples/bluetooth/bluedroid/classic_bt/a2dp_source/sdkconfig.ci.test diff --git a/examples/bluetooth/bluedroid/classic_bt/bt_hid_mouse_device/sdkconfig.ci.defaults b/examples/bluetooth/bluedroid/classic_bt/bt_hid_mouse_device/sdkconfig.ci.test similarity index 100% rename from examples/bluetooth/bluedroid/classic_bt/bt_hid_mouse_device/sdkconfig.ci.defaults rename to examples/bluetooth/bluedroid/classic_bt/bt_hid_mouse_device/sdkconfig.ci.test diff --git a/examples/bluetooth/bluedroid/classic_bt/bt_l2cap_client/sdkconfig.ci.defaults b/examples/bluetooth/bluedroid/classic_bt/bt_l2cap_client/sdkconfig.ci.test similarity index 100% rename from examples/bluetooth/bluedroid/classic_bt/bt_l2cap_client/sdkconfig.ci.defaults rename to examples/bluetooth/bluedroid/classic_bt/bt_l2cap_client/sdkconfig.ci.test diff --git a/examples/bluetooth/bluedroid/classic_bt/bt_l2cap_server/sdkconfig.ci.defaults b/examples/bluetooth/bluedroid/classic_bt/bt_l2cap_server/sdkconfig.ci.test similarity index 100% rename from examples/bluetooth/bluedroid/classic_bt/bt_l2cap_server/sdkconfig.ci.defaults rename to examples/bluetooth/bluedroid/classic_bt/bt_l2cap_server/sdkconfig.ci.test diff --git a/examples/bluetooth/bluedroid/classic_bt/bt_spp_acceptor/sdkconfig.ci.defaults b/examples/bluetooth/bluedroid/classic_bt/bt_spp_acceptor/sdkconfig.ci.test similarity index 100% rename from examples/bluetooth/bluedroid/classic_bt/bt_spp_acceptor/sdkconfig.ci.defaults rename to examples/bluetooth/bluedroid/classic_bt/bt_spp_acceptor/sdkconfig.ci.test diff --git a/examples/bluetooth/bluedroid/classic_bt/bt_spp_initiator/sdkconfig.ci.defaults b/examples/bluetooth/bluedroid/classic_bt/bt_spp_initiator/sdkconfig.ci.test similarity index 100% rename from examples/bluetooth/bluedroid/classic_bt/bt_spp_initiator/sdkconfig.ci.defaults rename to examples/bluetooth/bluedroid/classic_bt/bt_spp_initiator/sdkconfig.ci.test diff --git a/examples/bluetooth/bluedroid/classic_bt/bt_spp_vfs_acceptor/sdkconfig.ci.defaults b/examples/bluetooth/bluedroid/classic_bt/bt_spp_vfs_acceptor/sdkconfig.ci.test similarity index 100% rename from examples/bluetooth/bluedroid/classic_bt/bt_spp_vfs_acceptor/sdkconfig.ci.defaults rename to examples/bluetooth/bluedroid/classic_bt/bt_spp_vfs_acceptor/sdkconfig.ci.test diff --git a/examples/bluetooth/bluedroid/classic_bt/bt_spp_vfs_initiator/sdkconfig.ci.defaults b/examples/bluetooth/bluedroid/classic_bt/bt_spp_vfs_initiator/sdkconfig.ci.test similarity index 100% rename from examples/bluetooth/bluedroid/classic_bt/bt_spp_vfs_initiator/sdkconfig.ci.defaults rename to examples/bluetooth/bluedroid/classic_bt/bt_spp_vfs_initiator/sdkconfig.ci.test diff --git a/examples/bluetooth/bluedroid/classic_bt/pytest_classic_bt_test.py b/examples/bluetooth/bluedroid/classic_bt/pytest_classic_bt_test.py index 55f065b6f1..d2dbcec0e2 100644 --- a/examples/bluetooth/bluedroid/classic_bt/pytest_classic_bt_test.py +++ b/examples/bluetooth/bluedroid/classic_bt/pytest_classic_bt_test.py @@ -12,10 +12,10 @@ from pytest_embedded_idf.dut import IdfDut @pytest.mark.esp32 @pytest.mark.wifi_two_dut @pytest.mark.parametrize( - 'count, app_path, target, erase_all', [ + 'count, app_path, target, erase_all, config', [ (2, f'{os.path.join(os.path.dirname(__file__), "bt_spp_acceptor")}|{os.path.join(os.path.dirname(__file__), "bt_spp_initiator")}', - 'esp32|esp32', 'y'), + 'esp32|esp32', 'y', 'test'), ], indirect=True, ) @@ -42,10 +42,10 @@ def test_bt_spp_only(app_path: str, dut: Tuple[IdfDut, IdfDut]) -> None: @pytest.mark.esp32 @pytest.mark.wifi_two_dut @pytest.mark.parametrize( - 'count, app_path, target', [ + 'count, app_path, target, config', [ (2, f'{os.path.join(os.path.dirname(__file__), "bt_spp_vfs_acceptor")}|{os.path.join(os.path.dirname(__file__), "bt_spp_vfs_initiator")}', - 'esp32|esp32'), + 'esp32|esp32', 'test'), ], indirect=True, ) @@ -67,10 +67,10 @@ def test_bt_spp_vfs(app_path: str, dut: Tuple[IdfDut, IdfDut]) -> None: @pytest.mark.esp32 @pytest.mark.wifi_two_dut @pytest.mark.parametrize( - 'count, app_path, target', [ + 'count, app_path, target, config', [ (2, f'{os.path.join(os.path.dirname(__file__), "a2dp_sink")}|{os.path.join(os.path.dirname(__file__), "a2dp_source")}', - 'esp32|esp32'), + 'esp32|esp32', 'test'), ], indirect=True, ) @@ -112,11 +112,11 @@ def test_bt_hfp(app_path: str, dut: Tuple[IdfDut, IdfDut]) -> None: @pytest.mark.esp32 @pytest.mark.wifi_two_dut @pytest.mark.parametrize( - 'count, app_path, target', [ + 'count, app_path, target, config', [ (2, f'{os.path.join(os.path.dirname(__file__), "bt_hid_mouse_device")}| \ {os.path.join(os.path.abspath(os.path.join(os.path.dirname(__file__), "../..")), "esp_hid_host")}', - 'esp32|esp32'), + 'esp32|esp32', 'test'), ], indirect=True, ) @@ -138,10 +138,10 @@ def test_bt_hid(app_path: str, dut: Tuple[IdfDut, IdfDut]) -> None: @pytest.mark.esp32 @pytest.mark.wifi_two_dut @pytest.mark.parametrize( - 'count, app_path, target', [ + 'count, app_path, target, config', [ (2, f'{os.path.join(os.path.dirname(__file__), "bt_l2cap_server")}|{os.path.join(os.path.dirname(__file__), "bt_l2cap_client")}', - 'esp32|esp32'), + 'esp32|esp32', 'test'), ], indirect=True, ) diff --git a/examples/bluetooth/esp_hid_host/sdkconfig.ci.defaults b/examples/bluetooth/esp_hid_host/sdkconfig.ci.test similarity index 100% rename from examples/bluetooth/esp_hid_host/sdkconfig.ci.defaults rename to examples/bluetooth/esp_hid_host/sdkconfig.ci.test