Skip to content

Commit a46af89

Browse files
committed
Symetrically mark xfail for (min|max)imum
1 parent d242144 commit a46af89

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

tests/lowering/eltwise/binary/test_maximum.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ def forward(self, x, y):
1616
"input_shapes",
1717
(
1818
((32, 32), (32, 32)),
19-
((64,), (32, 64)),
19+
pytest.param(
20+
((64,), (32, 64)),
21+
marks=pytest.mark.xfail(reason="broadcasting issues (#64)"),
22+
),
2023
pytest.param(
2124
((64, 32), (64, 1)),
2225
marks=pytest.mark.xfail(reason="broadcasting issues (#64)"),

tests/lowering/eltwise/binary/test_minimum.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ def forward(self, x, y):
2020
((64,), (32, 64)),
2121
marks=pytest.mark.xfail(reason="broadcasting issues (#64)"),
2222
),
23-
((64, 32), (64, 1)),
23+
pytest.param(
24+
((64, 32), (64, 1)),
25+
marks=pytest.mark.xfail(reason="broadcasting issues (#64)"),
26+
),
2427
pytest.param(
2528
((64, 1), (1, 64)),
2629
marks=pytest.mark.xfail(reason="broadcasting issues (#64)"),

0 commit comments

Comments
 (0)