From 1131318b72ab25296bbd2b77f480f1338e46baa5 Mon Sep 17 00:00:00 2001 From: David Horstmann Date: Fri, 3 May 2024 14:34:57 +0100 Subject: [PATCH] Add framework/scripts to scripts_path.py This allows test scripts to find the new mbedtls_framework module. Signed-off-by: David Horstmann --- tests/scripts/scripts_path.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/scripts/scripts_path.py b/tests/scripts/scripts_path.py index 5d83f29f92..ce2afcfc36 100644 --- a/tests/scripts/scripts_path.py +++ b/tests/scripts/scripts_path.py @@ -15,3 +15,6 @@ import sys sys.path.append(os.path.join(os.path.dirname(__file__), os.path.pardir, os.path.pardir, 'scripts')) +sys.path.append(os.path.join(os.path.dirname(__file__), + os.path.pardir, os.path.pardir, + 'framework', 'scripts'))