# # Copyright (c) 2025 Huawei Technologies Co., Ltd. All Rights Reserved. # Copyright 2023 The vLLM team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # This file is a part of the vllm-ascend project. # Adapted from https://github.com/vllm-project/vllm/tree/main/tools # import os import subprocess import sys VLLM_ASCEND_SRC = "vllm_ascend" # TODO: Re-enable this after upstream fixed # VLLM_SRC = "vllm-empty/vllm" def check_init_file_in_package(directory): """ Check if a Python package directory contains __init__.py file. A directory is considered a Python package if it contains `.py` files and an `__init__.py` file. """ try: files = os.listdir(directory) except FileNotFoundError: print(f"Warning: Directory does not exist: {directory}") return False # If any .py file exists, we expect an __init__.py if any(f.endswith(".py") for f in files): init_file = os.path.join(directory, "__init__.py") if not os.path.isfile(init_file): return False return True def find_missing_init_dirs(src_dir): """ Return tracked package directories in src_dir missing __init__.py. Prefer git-tracked files so ignored/untracked generated directories are not treated as package violations. """ missing_init = set() try: result = subprocess.run( ["git", "ls-files", "-z", src_dir], check=True, capture_output=True, text=True, ) tracked_files = {f for f in result.stdout.split("\0") if f} except (subprocess.CalledProcessError, FileNotFoundError): tracked_files = None if tracked_files is not None: candidate_dirs = {os.path.dirname(f) for f in tracked_files if f.endswith(".py")} for dirpath in candidate_dirs: init_path = f"{dirpath}/__init__.py" if dirpath else "__init__.py" if init_path not in tracked_files: missing_init.add(dirpath) else: for dirpath, _, _ in os.walk(src_dir): if not check_init_file_in_package(dirpath): missing_init.add(dirpath) return missing_init def main(): all_missing = set() for src in [VLLM_ASCEND_SRC]: missing = find_missing_init_dirs(src) all_missing.update(missing) if all_missing: print("❌ Missing '__init__.py' files in the following Python package directories:") for pkg in sorted(all_missing): print(f" - {pkg}") sys.exit(1) else: print("All Python packages have __init__.py files.") if __name__ == "__main__": main()