Skip to content

Commit

Permalink
mark right-broadcasting test with xfail for windows 32-bit
Browse files Browse the repository at this point in the history
  • Loading branch information
pfackeldey committed Oct 3, 2024
1 parent c82a3d9 commit 13700d8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/test_2596_named_axis.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

from __future__ import annotations

import sys

import numpy as np
import pytest

Expand Down Expand Up @@ -224,6 +226,10 @@ def test_named_axis_indexing():
)


@pytest.mark.xfail(
sys.platform == "win32",
reason="right-broadcasting (NumPy-style) behaves differently for 32-bit windows",
)
def test_named_axis_right_broadcasting():
# [NumPy-style] rightbroadcasting: (n, m) -> (1, n, m)
a = ak.Array([1]) # (1,)
Expand Down

0 comments on commit 13700d8

Please sign in to comment.