diff --git a/tests/lowering/eltwise/binary/test_xlogy.py b/tests/lowering/eltwise/binary/test_xlogy.py index de1e0b4bb..afd10442c 100644 --- a/tests/lowering/eltwise/binary/test_xlogy.py +++ b/tests/lowering/eltwise/binary/test_xlogy.py @@ -17,7 +17,10 @@ def forward(self, x, y): "input_shapes", ( ((4, 4), (4, 4)), - ((8, 1), (8, 8)), + pytest.param( + ((8, 1), (8, 8)), + marks=pytest.mark.xfail(reason="broadcasting issues (#64)"), + ), pytest.param( ((1, 8), (8, 1)), marks=pytest.mark.xfail(reason="broadcasting issues (#64)"),