ci(qemu): remove allowed to fail attribute from qemu tests

This commit is contained in:
Marius Vikhammer 2024-07-26 15:22:18 +08:00
parent ed91305d6a
commit 00a46fedbe
2 changed files with 1 additions and 2 deletions

View File

@ -302,7 +302,6 @@ test_pytest_qemu:
- "**/build*/*.bin"
reports:
junit: XUNIT_RESULT.xml
allow_failure: true # IDFCI-1752
parallel:
matrix:
- IDF_TARGET: [esp32, esp32c3]

View File

@ -1,6 +1,5 @@
# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: CC0-1.0
import pytest
from pytest_embedded import Dut
@ -17,6 +16,7 @@ def test_esp_event(dut: Dut) -> None:
@pytest.mark.esp32c3
@pytest.mark.host_test
@pytest.mark.qemu
@pytest.mark.xfail('config.getvalue("target") == "esp32c3"', reason='Unstable on QEMU, needs investigation')
def test_esp_event_qemu(dut: Dut) -> None:
for case in dut.test_menu:
if 'qemu-ignore' not in case.groups and not case.is_ignored and case.type == 'normal':