We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ece79b7 commit d4c06ceCopy full SHA for d4c06ce
1 file changed
.github/actions/tests/action.yml
@@ -32,14 +32,11 @@ runs:
32
uv run pytest tests/
33
34
LIB_DIR=$(python3 -c "import sysconfig; print(sysconfig.get_config_var('LIBDIR'))")
35
- PYTHON_PREFIX=$(python3 -c "import sys; print(sys.prefix)")
36
37
if [[ "$RUNNER_OS" == "macOS" ]]; then
38
export DYLD_LIBRARY_PATH="$LIB_DIR:${DYLD_LIBRARY_PATH:-}"
39
else
40
export LD_LIBRARY_PATH="$LIB_DIR:${LD_LIBRARY_PATH:-}"
41
fi
42
43
- export PYTHONHOME="$PYTHON_PREFIX"
44
-
45
cargo test --workspace --locked -- --nocapture
0 commit comments