From 54e75a791ffb1b36c29408edc6ec4a0f80ab4ab3 Mon Sep 17 00:00:00 2001 From: Ye Kuang Date: Sun, 20 Jun 2021 12:27:40 +0800 Subject: [PATCH] [ir] [bug] Skip test_template --- tests/python/test_function.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/python/test_function.py b/tests/python/test_function.py index 84393c3ba3324..559239d915767 100644 --- a/tests/python/test_function.py +++ b/tests/python/test_function.py @@ -1,3 +1,5 @@ +import pytest + import taichi as ti @@ -148,7 +150,8 @@ def run(self) -> ti.i32: assert x[None] == 0 -@ti.test(experimental_real_function=True, exclude=[ti.opengl, ti.cc]) +@pytest.mark.skip(reason='https://github.com/taichi-dev/taichi/issues/2442') +@ti.test(experimental_real_function=True, debug=True) def test_templates(): x = ti.field(ti.i32, shape=()) y = ti.field(ti.i32, shape=())