Skip to content

Commit 3ec07f7

Browse files
committed
tweak: Fix path for running python tests natively
1 parent e4dab79 commit 3ec07f7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test-python-index.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ jobs:
3535
- name: Run tests natively
3636
# This should hopefully be temporary
3737
continue-on-error: true
38-
run: TEST_DIR=../tests/ python src/run_test.py
38+
run: |
39+
cd testing
40+
TEST_DIR=../tests/ python src/run_test.py
3941
# Secondly, validate that the tests pass within wasmer as well
4042
- name: Install uv
4143
run: curl -LsSf https://astral.sh/uv/install.sh | sh

0 commit comments

Comments
 (0)