forked from espressif/esp-idf
TODO: IDF-7657
This commit is contained in:
7
components/esp_pm/.build-test-rules.yml
Normal file
7
components/esp_pm/.build-test-rules.yml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
||||||
|
|
||||||
|
components/esp_pm/test_apps/esp_pm:
|
||||||
|
disable:
|
||||||
|
- if: IDF_TARGET in ["esp32h2"]
|
||||||
|
temporary: true
|
||||||
|
reason: Not supported yet
|
@@ -1,2 +1,2 @@
|
|||||||
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-H2 | ESP32-S2 | ESP32-S3 |
|
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-S2 | ESP32-S3 |
|
||||||
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- |
|
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- |
|
||||||
|
@@ -4,13 +4,14 @@
|
|||||||
import pytest
|
import pytest
|
||||||
from pytest_embedded import Dut
|
from pytest_embedded import Dut
|
||||||
|
|
||||||
|
CONFIGS = [
|
||||||
|
pytest.param('default', marks=[pytest.mark.supported_targets, pytest.mark.temp_skip_ci(targets=['esp32h2'], reason='TODO: IDF-7657')]),
|
||||||
|
pytest.param('limits', marks=[pytest.mark.supported_targets, pytest.mark.temp_skip_ci(targets=['esp32h2'], reason='TODO: IDF-7657')]),
|
||||||
|
pytest.param('options', marks=[pytest.mark.supported_targets, pytest.mark.temp_skip_ci(targets=['esp32h2'], reason='TODO: IDF-7657')]),
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.generic
|
@pytest.mark.generic
|
||||||
@pytest.mark.supported_targets
|
@pytest.mark.parametrize('config', CONFIGS, indirect=True)
|
||||||
@pytest.mark.parametrize('config', [
|
|
||||||
'default',
|
|
||||||
'limits',
|
|
||||||
'options',
|
|
||||||
], indirect=True)
|
|
||||||
def test_esp_pm(dut: Dut) -> None:
|
def test_esp_pm(dut: Dut) -> None:
|
||||||
dut.run_all_single_board_cases()
|
dut.run_all_single_board_cases()
|
||||||
|
Reference in New Issue
Block a user