Remove unnecessary scripts_path import lines

These files are now in the same directory as mbedtls_framework, so there
is no need to import any kind of path-modifying module.

Signed-off-by: David Horstmann <[email protected]>
This commit is contained in:
David Horstmann
2024-05-30 14:19:30 +01:00
parent cb0aa0eebe
commit 5792639496
6 changed files with 0 additions and 6 deletions
-1
View File
@@ -47,7 +47,6 @@ import sys
from abc import ABCMeta
from typing import List
import scripts_path # pylint: disable=unused-import
from mbedtls_framework import test_data_generation
from mbedtls_framework import bignum_common
# Import modules containing additional test classes
-1
View File
@@ -10,7 +10,6 @@ as in generate_bignum_tests.py.
import sys
import scripts_path # pylint: disable=unused-import
from mbedtls_framework import test_data_generation
# Import modules containing additional test classes
# Test function classes in these modules will be registered by
-1
View File
@@ -13,7 +13,6 @@ import re
import sys
from typing import Callable, Dict, FrozenSet, Iterable, Iterator, List, Optional
import scripts_path # pylint: disable=unused-import
from mbedtls_framework import crypto_data_tests
from mbedtls_framework import crypto_knowledge
from mbedtls_framework import macro_collector #pylint: disable=unused-import
-1
View File
@@ -14,7 +14,6 @@ import itertools
import os
from typing import Iterator, List, Optional, Tuple
import scripts_path #pylint: disable=unused-import
from mbedtls_framework import build_tree
from mbedtls_framework import c_parsing_helper
from mbedtls_framework import c_wrapper_generator
-1
View File
@@ -13,7 +13,6 @@ import os
import sys
import argparse
import jinja2
import scripts_path # pylint: disable=unused-import
from mbedtls_framework.build_tree import guess_project_root
TEST_DIR = os.path.join(guess_project_root(), 'tests')
-1
View File
@@ -9,7 +9,6 @@ generating the required key at run time. This helps speeding up testing."""
from typing import Iterator, List, Tuple
import re
import argparse
import scripts_path # pylint: disable=unused-import
from mbedtls_framework.asymmetric_key_data import ASYMMETRIC_KEY_DATA
from mbedtls_framework.build_tree import guess_project_root