Skip to content

Commit 4636e24

Browse files
committed
fix the pytest for the local run
1 parent eb5ac5d commit 4636e24

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

device/esp_tinyusb/test_apps/runtime_config/pytest_runtime_config.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44
import pytest
55
from pytest_embedded_idf.dut import IdfDut
66

7-
@pytest.mark.esp32s2
8-
@pytest.mark.esp32s3
9-
@pytest.mark.esp32p4
7+
@pytest.mark.parametrize('target', [
8+
'esp32s2',
9+
'esp32s3',
10+
'esp32p4',
11+
], indirect=True)
1012
@pytest.mark.usb_device
1113
def test_usb_device_runtime_config(dut: IdfDut) -> None:
1214
peripherals = [

0 commit comments

Comments
 (0)