We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4c06ce commit 7f57bf4Copy full SHA for 7f57bf4
1 file changed
.github/actions/tests/action.yml
@@ -29,8 +29,6 @@ runs:
29
- name: Run Tests
30
shell: bash -euxo pipefail {0}
31
run: |
32
- uv run pytest tests/
33
-
34
LIB_DIR=$(python3 -c "import sysconfig; print(sysconfig.get_config_var('LIBDIR'))")
35
36
if [[ "$RUNNER_OS" == "macOS" ]]; then
@@ -39,4 +37,6 @@ runs:
39
37
export LD_LIBRARY_PATH="$LIB_DIR:${LD_LIBRARY_PATH:-}"
40
38
fi
41
+ export PYTHONPATH="$(pwd)/python:$PYTHONPATH"
+
42
cargo test --workspace --locked -- --nocapture
0 commit comments