From: Michal Simek Date: Thu, 24 May 2018 08:04:19 +0000 (+0200) Subject: py: tests: Add missing net dependencies X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=630486086bcf94beb3ddabf5949d04403efe488c;p=thirdparty%2Fu-boot.git py: tests: Add missing net dependencies boot_config2 requires net to be enabled. Signed-off-by: Michal Simek --- diff --git a/test/py/tests/test_net_boot.py b/test/py/tests/test_net_boot.py index ca24741b596..6d9c2345d5a 100644 --- a/test/py/tests/test_net_boot.py +++ b/test/py/tests/test_net_boot.py @@ -56,6 +56,7 @@ def test_net_tftpboot_boot(u_boot_console): u_boot_console.drain_console() u_boot_console.cleanup_spawn() +@pytest.mark.buildconfigspec('cmd_net') def test_net_tftpboot_boot_config2(u_boot_console): if not test_net.net_set_up: pytest.skip('Network not initialized')