From f3fa1fd891d5f5d618014e46eb5001623d4e566b Mon Sep 17 00:00:00 2001 From: Zim Kalinowski Date: Tue, 20 Jun 2023 16:57:36 +0200 Subject: [PATCH] esp_rom: enable qemu tests --- components/esp_rom/test_apps/rom_tests/pytest_esp_rom.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/components/esp_rom/test_apps/rom_tests/pytest_esp_rom.py b/components/esp_rom/test_apps/rom_tests/pytest_esp_rom.py index 469a3c7da314..6d2f7df723ed 100644 --- a/components/esp_rom/test_apps/rom_tests/pytest_esp_rom.py +++ b/components/esp_rom/test_apps/rom_tests/pytest_esp_rom.py @@ -14,3 +14,10 @@ @pytest.mark.nightly_run def test_esp_rom(dut: Dut) -> None: dut.run_all_single_board_cases() + + +@pytest.mark.esp32c3 +@pytest.mark.host_test +@pytest.mark.qemu +def test_esp_rom_qemu(dut: Dut) -> None: + dut.run_all_single_board_cases()