File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 1717
1818[project ]
1919name = " apache-tvm-ffi"
20- version = " 0.1.0a8 "
20+ version = " 0.1.0a9 "
2121description = " tvm ffi"
2222
2323authors = [{ name = " TVM FFI team" }]
Original file line number Diff line number Diff line change 2828from tvm_ffi .module import Module
2929
3030
31+ @pytest .mark .xfail (sys .platform .startswith ("win" ), reason = "needs to robustify windows support" )
3132def test_load_inline_cpp ():
3233 mod : Module = tvm_ffi .cpp .load_inline (
3334 name = "hello" ,
@@ -54,6 +55,7 @@ def test_load_inline_cpp():
5455 numpy .testing .assert_equal (x + 1 , y )
5556
5657
58+ @pytest .mark .xfail (sys .platform .startswith ("win" ), reason = "needs to robustify windows support" )
5759def test_load_inline_cpp_with_docstrings ():
5860 mod : Module = tvm_ffi .cpp .load_inline (
5961 name = "hello" ,
@@ -80,6 +82,7 @@ def test_load_inline_cpp_with_docstrings():
8082 numpy .testing .assert_equal (x + 1 , y )
8183
8284
85+ @pytest .mark .xfail (sys .platform .startswith ("win" ), reason = "needs to robustify windows support" )
8386def test_load_inline_cpp_multiple_sources ():
8487 mod : Module = tvm_ffi .cpp .load_inline (
8588 name = "hello" ,
@@ -122,6 +125,7 @@ def test_load_inline_cpp_multiple_sources():
122125 numpy .testing .assert_equal (x + 1 , y )
123126
124127
128+ @pytest .mark .xfail (sys .platform .startswith ("win" ), reason = "needs to robustify windows support" )
125129def test_load_inline_cpp_build_dir ():
126130 mod : Module = tvm_ffi .cpp .load_inline (
127131 name = "hello" ,
You can’t perform that action at this time.
0 commit comments