Skip to content

Commit be1323e

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

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
pip install .
3434
# Validate that the python tests themselves are valid
3535
- name: Run tests natively
36-
# This should hopefully be temporary
37-
continue-on-error: true
38-
run: TEST_DIR=../tests/ python src/run_test.py
36+
run: |
37+
cd testing
38+
TEST_DIR=../tests/ python /run_tests.py
3939
# Secondly, validate that the tests pass within wasmer as well
4040
- name: Install uv
4141
run: curl -LsSf https://astral.sh/uv/install.sh | sh

0 commit comments

Comments
 (0)