From 22a93fd927f0b33ec34847edde0c8daad719ec6d Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Tue, 31 Oct 2017 15:20:55 +0100 Subject: [PATCH] py: tests: Fix configspec marking for nand tests Fix marking for nand tests. Create multiple markers. Signed-off-by: Michal Simek --- test/py/tests/test_nand.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/py/tests/test_nand.py b/test/py/tests/test_nand.py index d01ee0da1c5..0d6ba5bb8f1 100644 --- a/test/py/tests/test_nand.py +++ b/test/py/tests/test_nand.py @@ -18,7 +18,9 @@ TODO: - Handle multiple controller cases, as of now it assumes one. """ -pytestmark = pytest.mark.buildconfigspec('cmd_bdi cmd_nand cmd_memory') +pytestmark = [pytest.mark.buildconfigspec("cmd_bdi"), + pytest.mark.buildconfigspec("cmd_nand"), + pytest.mark.buildconfigspec("cmd_memory")] nand_detected = False page_size = 0 -- 2.47.3