From d7893a4d4eaa9e09f2c62bf13394362cd4ce5cd6 Mon Sep 17 00:00:00 2001 From: Chris Sidebottom Date: Wed, 30 Jun 2021 07:45:49 +0000 Subject: [PATCH] Change parametrize fixture to use string instead of list --- tests/python/driver/tvmc/test_mlf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/driver/tvmc/test_mlf.py b/tests/python/driver/tvmc/test_mlf.py index 8cebbd33ff2c..4669fab916a6 100644 --- a/tests/python/driver/tvmc/test_mlf.py +++ b/tests/python/driver/tvmc/test_mlf.py @@ -26,7 +26,7 @@ @pytest.mark.parametrize( - ["target", "pass_configs"], [["llvm", []], ["c --executor=aot", ["tir.disable_vectorize=1"]]] + "target,pass_configs", [["llvm", []], ["c --executor=aot", ["tir.disable_vectorize=1"]]] ) def test_tvmc_cl_compile_run_mlf(tflite_mobilenet_v1_1_quant, tmpdir_factory, target, pass_configs): pytest.importorskip("tflite")