From b7113526723530bdb496b913e230caf028921f5b Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Sat, 18 Feb 2023 23:03:22 -0500 Subject: [PATCH] [FIX] script test parallel: force check in addons when copy in sandbox --- script/test/run_parallel_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/test/run_parallel_test.py b/script/test/run_parallel_test.py index dd999a7..de1b041 100755 --- a/script/test/run_parallel_test.py +++ b/script/test/run_parallel_test.py @@ -379,7 +379,7 @@ async def test_exec( for module_name in lst_module_to_test: # Update path to change new emplacement s_lst_path_tested_module = await run_command_get_output( - "find", ".", "-name", module_name + "find", "./addons/", "-name", module_name ) if not s_lst_path_tested_module: return ( @@ -422,7 +422,7 @@ async def test_exec( s_lst_path_generated_module = await run_command_get_output( "find", - ".", + "./addons/", "-name", generated_module, cwd=temp_dir_name,