Merge branch 'ci/driver_single_board' into 'master'

ci: update test apps to use run_all_single_board_cases

See merge request espressif/esp-idf!22669
This commit is contained in:
Marius Vikhammer
2023-03-13 09:25:42 +08:00
25 changed files with 47 additions and 103 deletions

View File

@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: Apache-2.0
import pytest
@@ -16,9 +16,7 @@ from pytest_embedded import Dut
indirect=True,
)
def test_flash_encryption(dut: Dut) -> None:
dut.expect_exact('Press ENTER to see the list of tests')
dut.write('*')
dut.expect_unity_test_output()
dut.run_all_single_board_cases()
@pytest.mark.esp32s3
@@ -31,9 +29,7 @@ def test_flash_encryption(dut: Dut) -> None:
indirect=True,
)
def test_flash_encryption_f4r8(dut: Dut) -> None:
dut.expect_exact('Press ENTER to see the list of tests')
dut.write('*')
dut.expect_unity_test_output()
dut.run_all_single_board_cases()
@pytest.mark.esp32s3
@@ -46,6 +42,4 @@ def test_flash_encryption_f4r8(dut: Dut) -> None:
indirect=True,
)
def test_flash_encryption_f8r8(dut: Dut) -> None:
dut.expect_exact('Press ENTER to see the list of tests')
dut.write('*')
dut.expect_unity_test_output()
dut.run_all_single_board_cases()