Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

failing tests #1113

Merged
merged 5 commits into from
Apr 14, 2024
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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.0.1"
__version__ = "5.0.2"

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,20 @@ Source = "https://github.com/InsightSoftwareConsortium/itk-wasm"

[tool.hatch.envs.default.scripts]
test = [
"hatch build -t wheel",
"pytest -s --dist-dir=./dist --rt=chrome",
"hatch build -t wheel ./dist/pyodide/",
"pytest -s --dist-dir=./dist/pyodide --rt=chrome",
]
download-pyodide = [
"curl -L https://github.com/pyodide/pyodide/releases/download/0.24.1/pyodide-0.24.1.tar.bz2 -o pyodide.tar.bz2",
"tar xjf pyodide.tar.bz2",
"rm -rf dist pyodide.tar.bz2",
"rm -rf dist/pyodide pyodide.tar.bz2",
"mkdir -p dist",
"mv pyodide dist",
]
serve = [
"hatch build -t wheel",
"hatch build -t wheel ./dist/pyodide",
'echo "\nVisit http://localhost:8877/console.html\n"',
"python -m http.server --directory=./dist 8877",
"python -m http.server --directory=./dist/pyodide 8877",
]


Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.0.1"
__version__ = "5.0.2"
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.0.1"
__version__ = "5.0.2"
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,21 @@ Source = "https://github.com/InsightSoftwareConsortium/itk-wasm"

[tool.hatch.envs.default.scripts]
test = [
"hatch build -t wheel",
"pytest -s --dist-dir=./dist --rt=chrome",
"hatch build -t wheel ./dist/pyodide/",
"pytest -s --dist-dir=./dist/pyodide --rt=chrome",
]
download-pyodide = [
"curl -L https://github.com/pyodide/pyodide/releases/download/0.24.1/pyodide-0.24.1.tar.bz2 -o pyodide.tar.bz2",
"tar xjf pyodide.tar.bz2",
"rm -rf dist pyodide.tar.bz2",
"rm -rf dist/pyodide pyodide.tar.bz2",
"mkdir -p dist",
"mv pyodide dist",
]
serve = [
"hatch build -t wheel ./dist/pyodide",
'echo "\nVisit http://localhost:8877/console.html\n"',
"python -m http.server --directory=./dist/pyodide 8877",
]

[tool.hatch.build]
exclude = [
Expand Down
2 changes: 1 addition & 1 deletion packages/compare-meshes/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ wasi-build

python
test
typescript/version.ts
typescript/src/version.ts
typescript/dist
typescript/demo-app

Large diffs are not rendered by default.

Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Mesh {
numberOfCellPixels: number
cellData: null | TypedArray

constructor(public readonly meshType = new MeshType()) {
constructor (public readonly meshType = new MeshType()) {
this.name = 'mesh'

this.numberOfPoints = 0
Expand Down
Loading