summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHernan Grecco <hgrecco@gmail.com>2023-05-12 17:31:23 -0300
committerHernan Grecco <hgrecco@gmail.com>2023-05-12 17:31:23 -0300
commita3297cf7acc2c767b2cf05c27862ee2fbde8a03f (patch)
tree1996bb9ded7db497dde6fe4cbbee3584cde0dd55
parent53fab4fea2d4e494f3af0cd457e4354f947e83e4 (diff)
downloadpint-a3297cf7acc2c767b2cf05c27862ee2fbde8a03f.tar.gz
Mark xfail certain test_compat_downcast.py::test_array_quantity_creation_by_multiplication
-rw-r--r--pint/testsuite/test_compat_downcast.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/pint/testsuite/test_compat_downcast.py b/pint/testsuite/test_compat_downcast.py
index ed43e94..cffc3bb 100644
--- a/pint/testsuite/test_compat_downcast.py
+++ b/pint/testsuite/test_compat_downcast.py
@@ -146,7 +146,11 @@ def test_bivariate_op_consistency(local_registry, q_base, op, unit, array):
id="array-first",
marks=pytest.mark.xfail(reason="upstream issue numpy/numpy#15200"),
),
- pytest.param(WR2(operator.mul), id="unit-first"),
+ pytest.param(
+ WR2(operator.mul),
+ id="unit-first",
+ marks=pytest.mark.xfail(reason="upstream issue numpy/numpy#15200"),
+ ),
],
)
@pytest.mark.parametrize(