File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -35,14 +35,15 @@ jobs:
35
35
- name : Run tests natively
36
36
# This should hopefully be temporary
37
37
continue-on-error : true
38
- run : TEST_DIR=../ python src/run_test.py
38
+ run : TEST_DIR=../tests/ python src/run_test.py
39
39
# Secondly, validate that the tests pass within wasmer as well
40
40
- name : Install uv
41
41
run : curl -LsSf https://astral.sh/uv/install.sh | sh
42
42
- name : Install wasmer
43
43
run : curl https://get.wasmer.io -sSfL | sh -s ${{ inputs.wasmer-version }}
44
44
- name : Setup project for wasmer
45
45
run : |
46
+ cd testing
46
47
uv pip compile pyproject.toml \
47
48
--python-version=${{ inputs.python-version }} \
48
49
--universal \
60
61
--compile
61
62
# Ensure tests pass on wasmer
62
63
- 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
You can’t perform that action at this time.
0 commit comments