From 82844b27f5f1fd88576cebe6016fc5b017e50f2d Mon Sep 17 00:00:00 2001 From: MyungJoo Ham Date: Wed, 4 May 2022 12:20:04 +0900 Subject: [PATCH] test: disable converter test if python is not available. converter test uses python scripts. disable converter test if python is not available. Signed-off-by: MyungJoo Ham --- tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index 2c2ef21..34bc89d 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -187,7 +187,7 @@ if gtest_dep.found() endif # Run unittest_converter - if flatbuf_support_is_available + if flatbuf_support_is_available and have_python3 unittest_converter = executable('unittest_converter', join_paths('nnstreamer_converter', 'unittest_converter.cc'), dependencies: [nnstreamer_unittest_deps, flatbuf_dep, nnstreamer_python3_helper_dep], -- 2.7.4