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