This is an automated email from the ASF dual-hosted git repository.
ruihangl pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new bf71ef4a0c [FFI] Temp skip windows tests (#18297)
bf71ef4a0c is described below
commit bf71ef4a0c29cbe84502771da05f188b1830f547
Author: Tianqi Chen <[email protected]>
AuthorDate: Tue Sep 9 18:49:15 2025 -0400
[FFI] Temp skip windows tests (#18297)
---
ffi/pyproject.toml | 2 +-
ffi/tests/python/test_load_inline.py | 4 ++++
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/ffi/pyproject.toml b/ffi/pyproject.toml
index 79cd958786..0988a78d63 100644
--- a/ffi/pyproject.toml
+++ b/ffi/pyproject.toml
@@ -17,7 +17,7 @@
[project]
name = "apache-tvm-ffi"
-version = "0.1.0a8"
+version = "0.1.0a9"
description = "tvm ffi"
authors = [{ name = "TVM FFI team" }]
diff --git a/ffi/tests/python/test_load_inline.py
b/ffi/tests/python/test_load_inline.py
index 6510cca540..9a10476d8e 100644
--- a/ffi/tests/python/test_load_inline.py
+++ b/ffi/tests/python/test_load_inline.py
@@ -28,6 +28,7 @@ import tvm_ffi.cpp
from tvm_ffi.module import Module
[email protected](sys.platform.startswith("win"), reason="needs to robustify
windows support")
def test_load_inline_cpp():
mod: Module = tvm_ffi.cpp.load_inline(
name="hello",
@@ -54,6 +55,7 @@ def test_load_inline_cpp():
numpy.testing.assert_equal(x + 1, y)
[email protected](sys.platform.startswith("win"), reason="needs to robustify
windows support")
def test_load_inline_cpp_with_docstrings():
mod: Module = tvm_ffi.cpp.load_inline(
name="hello",
@@ -80,6 +82,7 @@ def test_load_inline_cpp_with_docstrings():
numpy.testing.assert_equal(x + 1, y)
[email protected](sys.platform.startswith("win"), reason="needs to robustify
windows support")
def test_load_inline_cpp_multiple_sources():
mod: Module = tvm_ffi.cpp.load_inline(
name="hello",
@@ -122,6 +125,7 @@ def test_load_inline_cpp_multiple_sources():
numpy.testing.assert_equal(x + 1, y)
[email protected](sys.platform.startswith("win"), reason="needs to robustify
windows support")
def test_load_inline_cpp_build_dir():
mod: Module = tvm_ffi.cpp.load_inline(
name="hello",