We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06661df commit 82ce530Copy full SHA for 82ce530
.github/workflows/ci.yaml
@@ -553,7 +553,6 @@ jobs:
553
- name: build rustpython
554
run: cargo build --release --target wasm32-wasip1 --features freeze-stdlib,stdlib --verbose
555
- name: run snippets
556
- run: wasmer run --dir `pwd` target/wasm32-wasip1/release/rustpython.wasm -- `pwd`/extra_tests/snippets/stdlib_random.py
+ run: wasmer run --dir $(pwd) target/wasm32-wasip1/release/rustpython.wasm -- "$(pwd)/extra_tests/snippets/stdlib_random.py"
557
- name: run cpython unittest
558
- run: wasmer run --dir `pwd` target/wasm32-wasip1/release/rustpython.wasm -- `pwd`/Lib/test/test_int.py
559
-
+ run: wasmer run --dir $(pwd) target/wasm32-wasip1/release/rustpython.wasm -- "$(pwd)/Lib/test/test_int.py"
0 commit comments