From eeb4baf17f14bf43545d4ab5dd4517fc35a17767 Mon Sep 17 00:00:00 2001 From: morris Date: Thu, 31 Oct 2024 18:32:37 +0800 Subject: [PATCH] fix(gdma): run test cases after reset --- components/esp_hw_support/test_apps/dma/pytest_dma.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/esp_hw_support/test_apps/dma/pytest_dma.py b/components/esp_hw_support/test_apps/dma/pytest_dma.py index 3d78de4a84..1d741f14fb 100644 --- a/components/esp_hw_support/test_apps/dma/pytest_dma.py +++ b/components/esp_hw_support/test_apps/dma/pytest_dma.py @@ -21,7 +21,7 @@ from pytest_embedded import Dut indirect=True, ) def test_dma(dut: Dut) -> None: - dut.run_all_single_board_cases() + dut.run_all_single_board_cases(reset=True) @pytest.mark.esp32s3 @@ -34,4 +34,4 @@ def test_dma(dut: Dut) -> None: indirect=True, ) def test_dma_psram(dut: Dut) -> None: - dut.run_all_single_board_cases() + dut.run_all_single_board_cases(reset=True)