diff --git a/.gitignore b/.gitignore index c79b9fd..b7cb4d2 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,5 @@ __pycache__/ *.egg-info/ .venv/ .ruff_cache/ +.pytest_cache/ .DS_Store diff --git a/bin/install-rs b/bin/install-rs index 5229e1c..dc56d34 100755 --- a/bin/install-rs +++ b/bin/install-rs @@ -5,4 +5,4 @@ cd "$(dirname "${BASH_SOURCE[0]}")/.." echo "Building stringflow Rust crate..." cargo build --release -echo "Rust install complete!" +echo "Rust build complete!" diff --git a/py/stringflow/test_api.py b/tests/test_stringflow.py similarity index 98% rename from py/stringflow/test_api.py rename to tests/test_stringflow.py index be01207..f364f61 100644 --- a/py/stringflow/test_api.py +++ b/tests/test_stringflow.py @@ -1,7 +1,7 @@ """Tests for the stringflow Python API. E2E tests require a running llama-server on localhost:8080. -Run with: uv run pytest py/stringflow/test_api.py +Run with: uv run pytest tests/test_stringflow.py """ import pytest