From cbe5c71c4db7c01ee57c6895122e109c19ed1d89 Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Tue, 5 May 2020 10:53:12 +0200 Subject: [PATCH] py: tests: Mark mdio/mmc tests as xfail Mdio/mmc tests depend on platform setup. That's why it can fail on qemu target checked by travis. Similar change was done by commit 4e8d5fdbbe92 ("py: tests: Mark mii tests as xfail"). Signed-off-by: Michal Simek State: pending --- test/py/tests/test_mdio.py | 1 + test/py/tests/test_mmc.py | 1 + 2 files changed, 2 insertions(+) diff --git a/test/py/tests/test_mdio.py b/test/py/tests/test_mdio.py index 31541629510..ea7df19b559 100644 --- a/test/py/tests/test_mdio.py +++ b/test/py/tests/test_mdio.py @@ -4,6 +4,7 @@ import pytest +@pytest.mark.xfail @pytest.mark.buildconfigspec("cmd_mii") @pytest.mark.buildconfigspec("phylib") def test_mdio_list(u_boot_console): diff --git a/test/py/tests/test_mmc.py b/test/py/tests/test_mmc.py index 3fa14641fc1..3ebb86f5488 100644 --- a/test/py/tests/test_mmc.py +++ b/test/py/tests/test_mmc.py @@ -35,6 +35,7 @@ def test_mmc_list(u_boot_console): global mmc_set_up mmc_set_up = True +@pytest.mark.xfail @pytest.mark.buildconfigspec("cmd_mmc") def test_mmc_dev(u_boot_console): if not mmc_set_up: -- 2.47.3