We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d84f5a3 commit 75f0714Copy full SHA for 75f0714
2 files changed
.github/workflows/pythonpackage.yml
@@ -22,6 +22,10 @@ jobs:
22
uses: actions/setup-python@v5
23
with:
24
python-version: ${{ matrix.python-version }}
25
+ - name: Set up Rust WASM target
26
+ uses: dtolnay/rust-toolchain@stable
27
+ with:
28
+ targets: wasm32-unknown-unknown
29
- name: Install dependencies
30
run: |
31
python -m pip install --upgrade pip
.github/workflows/wasm-backends-test.yml
@@ -93,7 +93,7 @@ jobs:
93
- name: Compile generated Rust to WASM
94
if: matrix.backend == 'wasm'
95
96
- pytest tests/wasm_codegen_poc_test.py -k rust_compiles_to_wasm -v --tb=short --timeout=120
+ pytest tests/wasm_codegen_poc_test.py -v --tb=short --timeout=120
97
98
- name: Run fallback-specific tests
99
if: matrix.backend == 'fallback'
0 commit comments