diff --git a/python/tests/runners/__init__.py b/python/tests/runners/__init__.py deleted file mode 100644 index 17b710a..0000000 --- a/python/tests/runners/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -import pathlib -import sys - -sys.path.insert(0, str(pathlib.Path(__file__).absolute().parent.parent / 'coglet' / '_compat')) \ No newline at end of file diff --git a/python/tests/schemas/__init__.py b/python/tests/schemas/__init__.py deleted file mode 100644 index 17b710a..0000000 --- a/python/tests/schemas/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -import pathlib -import sys - -sys.path.insert(0, str(pathlib.Path(__file__).absolute().parent.parent / 'coglet' / '_compat')) \ No newline at end of file diff --git a/script/schemas.sh b/script/schemas.sh index 6171419..48d0dc8 100755 --- a/script/schemas.sh +++ b/script/schemas.sh @@ -12,7 +12,6 @@ cd "$schemas_dir" trap "rm -f predict.py" EXIT for f in *.py; do - [ "$f" != __init__.py ] || continue echo "Generating schema for $(basename "$f")" cp "$f" predict.py uv run --python "$python_version" --with cog python3 -m cog.command.openapi_schema > "$(basename "$f" .py).json"