mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-12 17:14:36 +02:00
ci: enable esp32c6 deepsleep ci tests
This commit is contained in:
@@ -40,13 +40,13 @@ examples/system/console/basic:
|
|||||||
|
|
||||||
examples/system/deep_sleep:
|
examples/system/deep_sleep:
|
||||||
disable:
|
disable:
|
||||||
- if: IDF_TARGET in ["esp32c2", "esp32c6", "esp32h2"]
|
- if: IDF_TARGET in ["esp32c2", "esp32h2"]
|
||||||
temporary: true
|
temporary: true
|
||||||
reason: target(s) not supported yet
|
reason: target(s) not supported yet # IDF-5432 / IDF-6268
|
||||||
|
|
||||||
examples/system/deep_sleep_wake_stub:
|
examples/system/deep_sleep_wake_stub:
|
||||||
disable:
|
disable:
|
||||||
- if: IDF_TARGET in ["esp32c2", "esp32c6", "esp32h2"]
|
- if: IDF_TARGET in ["esp32c2", "esp32h2"]
|
||||||
temporary: true
|
temporary: true
|
||||||
reason: target(s) is not supported yet
|
reason: target(s) is not supported yet
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
| Supported Targets | ESP32 | ESP32-C3 | ESP32-S2 | ESP32-S3 |
|
| Supported Targets | ESP32 | ESP32-C3 | ESP32-C6 | ESP32-S2 | ESP32-S3 |
|
||||||
| ----------------- | ----- | -------- | -------- | -------- |
|
| ----------------- | ----- | -------- | -------- | -------- | -------- |
|
||||||
|
|
||||||
# Deep Sleep Example
|
# Deep Sleep Example
|
||||||
|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
# SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
|
||||||
# SPDX-License-Identifier: CC0-1.0
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
@@ -12,7 +12,7 @@ touch_wake_up_support = ['esp32', 'esp32s2']
|
|||||||
|
|
||||||
CONFIGS = [
|
CONFIGS = [
|
||||||
pytest.param('esp32_singlecore', marks=[pytest.mark.esp32]),
|
pytest.param('esp32_singlecore', marks=[pytest.mark.esp32]),
|
||||||
pytest.param('basic', marks=[pytest.mark.esp32, pytest.mark.esp32s2, pytest.mark.esp32s3, pytest.mark.esp32c3]),
|
pytest.param('basic', marks=[pytest.mark.esp32, pytest.mark.esp32s2, pytest.mark.esp32s3, pytest.mark.esp32c3, pytest.mark.esp32c6]),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
| Supported Targets | ESP32 | ESP32-C3 | ESP32-S2 | ESP32-S3 |
|
| Supported Targets | ESP32 | ESP32-C3 | ESP32-C6 | ESP32-S2 | ESP32-S3 |
|
||||||
| ----------------- | ----- | -------- | -------- | -------- |
|
| ----------------- | ----- | -------- | -------- | -------- | -------- |
|
||||||
|
|
||||||
# Deep Sleep Wake Stub Example
|
# Deep Sleep Wake Stub Example
|
||||||
|
|
||||||
|
@@ -12,6 +12,7 @@ from pytest_embedded import Dut
|
|||||||
@pytest.mark.esp32s2
|
@pytest.mark.esp32s2
|
||||||
@pytest.mark.esp32s3
|
@pytest.mark.esp32s3
|
||||||
@pytest.mark.esp32c3
|
@pytest.mark.esp32c3
|
||||||
|
@pytest.mark.esp32c6
|
||||||
@pytest.mark.generic
|
@pytest.mark.generic
|
||||||
@pytest.mark.parametrize('config', ['default',], indirect=True)
|
@pytest.mark.parametrize('config', ['default',], indirect=True)
|
||||||
def test_deep_sleep_wake_stub(config: str, dut: Dut) -> None:
|
def test_deep_sleep_wake_stub(config: str, dut: Dut) -> None:
|
||||||
|
Reference in New Issue
Block a user