hotfix: skip test_exclude_const_metadata (#9208)

This commit is contained in:
qazal
2025-02-22 23:26:04 +02:00
committed by GitHub
parent e0adb1fc76
commit 81a71ae0f6

View File

@@ -755,6 +755,7 @@ class TestTensorMetadata(unittest.TestCase):
self.assertEqual([m.name for m in k.metadata], ["rand"])
# we exclude const from kernel metadata because tensor methods can share the same CONST UOp
@unittest.skip("TODO: flaky")
def test_exclude_const_metadata(self):
a = Tensor.arange(4)
b = Tensor.full((4,), -1, dtype=dtypes.int).contiguous()