Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
[BLAZ-1716] Moved test_use_secure_regex.py to main test module
  • Loading branch information
dantolin-iriusrisk committed Apr 24, 2025
commit 38a60f63f11b1359eb00ab5de8051bacf341a179
Empty file removed startleft/tests/arch/__init__.py
Empty file.
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
import ast
import os
import unittest
from unittest import TestCase


def get_files_with_imported_library(library_name, excluded_dirs=(), excluded_files=()) -> list[str]:
if excluded_dirs is None:
excluded_dirs = []
this_dir = os.path.dirname(os.path.abspath(__file__))
project_root = f'{this_dir}/../../../'
project_root = f'{this_dir}/../../'
checked_files = []
matches = []
for root, dirs, files in os.walk(project_root):
Expand Down