From ef54a7bafe0de0ad46167f875fe2ccc3fdb7d59f Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Mon, 27 Feb 2023 14:29:48 -0500 Subject: [PATCH] test(Python): Workaround Windows tmpdir hold Discussed more in: https://github.com/bytecodealliance/wasmtime-py/issues/132 --- src/python/itkwasm/test/test_pipeline.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/python/itkwasm/test/test_pipeline.py b/src/python/itkwasm/test/test_pipeline.py index b7a337b07..58673b069 100644 --- a/src/python/itkwasm/test/test_pipeline.py +++ b/src/python/itkwasm/test/test_pipeline.py @@ -95,6 +95,9 @@ def test_pipeline_input_output_files(): assert content[2] == 190 assert content[3] == 239 + # Currently required per https://github.com/bytecodealliance/wasmtime-py/issues/132 + del pipeline + def test_pipeline_write_read_image(): pipeline = Pipeline(test_input_dir / 'median-filter-test.wasi.wasm')