Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions python/cpp/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ coverage-py: ## run python tests and collect test coverage
test: test-py ## run all tests
{% if add_pyodide %}
test-pyodide: ## build and test the Python package in Pyodide
rm -rf dist/pyodide
uvx --from cibuildwheel==4.2.0 cibuildwheel --only cp314-pyodide_wasm32 --output-dir dist/pyodide .
{% endif %}
coverage: coverage-py ## run all tests and collect test coverage
Expand Down
1 change: 1 addition & 0 deletions python/cppjswasm/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ coverage-cpp: ## run C++ tests and collect test coverage
test: test-py test-js test-cpp ## run all tests
{% if add_pyodide %}
test-pyodide: ## build and test the Python package in Pyodide
rm -rf dist/pyodide
uvx --from cibuildwheel==4.2.0 cibuildwheel --only cp314-pyodide_wasm32 --output-dir dist/pyodide .
{% endif %}
coverage: coverage-py coverage-js coverage-cpp ## run all tests and collect test coverage
Expand Down
1 change: 1 addition & 0 deletions python/rust/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ test: test-py test-rs ## run all tests
{% if add_pyodide %}
test-pyodide: ## build and test the Python package in Pyodide
rustup target add wasm32-unknown-emscripten
rm -rf dist/pyodide
uvx --from cibuildwheel==4.2.0 cibuildwheel --only cp314-pyodide_wasm32 --output-dir dist/pyodide .
{% endif %}
coverage: coverage-py coverage-rs ## run all tests and collect test coverage
Expand Down
1 change: 1 addition & 0 deletions python/rustjswasm/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ test: test-py test-js test-rs ## run all tests
{% if add_pyodide %}
test-pyodide: ## build and test the Python package in Pyodide
rustup target add wasm32-unknown-emscripten
rm -rf dist/pyodide
uvx --from cibuildwheel==4.2.0 cibuildwheel --only cp314-pyodide_wasm32 --output-dir dist/pyodide .
{% endif %}
coverage: coverage-py coverage-js coverage-rs ## run all tests and collect test coverage
Expand Down
Loading