From 96f4f7805444896374c53a3fdcb281a6a177b916 Mon Sep 17 00:00:00 2001 From: "radek.tandler" Date: Thu, 4 Sep 2025 13:44:23 +0200 Subject: [PATCH] ci(nvs_flash): Enabled nvs_host_test in ci --- .../host_test/nvs_host_test/pytest_nvs_host_linux.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/components/nvs_flash/host_test/nvs_host_test/pytest_nvs_host_linux.py b/components/nvs_flash/host_test/nvs_host_test/pytest_nvs_host_linux.py index 37b8275a7e..60172550f8 100644 --- a/components/nvs_flash/host_test/nvs_host_test/pytest_nvs_host_linux.py +++ b/components/nvs_flash/host_test/nvs_host_test/pytest_nvs_host_linux.py @@ -6,6 +6,14 @@ from pytest_embedded_idf.utils import idf_parametrize @pytest.mark.host_test +@pytest.mark.parametrize( + 'config', + [ + 'default_set_key', + 'legacy_set_key', + ], + indirect=True, +) @idf_parametrize('target', ['linux'], indirect=['target']) def test_nvs_host_linux(dut: Dut) -> None: dut.expect_exact('All tests passed', timeout=60)