Skip to content

Commit d805739

Browse files
committed
fix: Paths should now be OK
1 parent 7a4e785 commit d805739

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,15 @@ jobs:
3535
- name: Run tests natively
3636
# This should hopefully be temporary
3737
continue-on-error: true
38-
run: TEST_DIR=../ python src/run_test.py
38+
run: TEST_DIR=../tests/ python src/run_test.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
4242
- name: Install wasmer
4343
run: curl https://get.wasmer.io -sSfL | sh -s ${{ inputs.wasmer-version }}
4444
- name: Setup project for wasmer
4545
run: |
46+
cd testing
4647
uv pip compile pyproject.toml \
4748
--python-version=${{ inputs.python-version }} \
4849
--universal \
@@ -60,4 +61,4 @@ jobs:
6061
--compile
6162
# Ensure tests pass on wasmer
6263
- name: Run tests (wasmer)
63-
run: wasmer run . --registry=wasmer.wtf --command-name=test --net
64+
run: cd testing && wasmer run . --registry=wasmer.wtf --command-name=test --net

0 commit comments

Comments
 (0)