Skip to content

Commit 4b46080

Browse files
ElleNajtclaude
andcommitted
Fix venv path in CI workflow
The working directory is tests/, so the venv is at ../.venv not ../../.venv Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 5ed43b0 commit 4b46080

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/org_babel_tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ jobs:
5959
run: |
6060
set -x
6161
echo "=== Python version ==="
62-
../../.venv/bin/python3 --version
62+
../.venv/bin/python3 --version
63+
echo "=== Venv location ==="
64+
ls -la ../.venv/bin/ | head -5
6365
echo "=== Running tests ==="
6466
./run_expect_tests.sh || {
6567
echo "=== Test failed, showing diffs ==="

0 commit comments

Comments
 (0)