summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorDWesl <22566757+DWesl@users.noreply.github.com>2021-12-24 18:36:26 -0500
committerDWesl <22566757+DWesl@users.noreply.github.com>2021-12-24 18:36:26 -0500
commit4480ff5322fee74336657de7b1ba97c0e746f27a (patch)
treebc64096b82f1c7a43609767f7ad3eeecd2fb6c04 /numpy
parent659732ade7a506bded4347a5828b9fc95377669f (diff)
downloadnumpy-4480ff5322fee74336657de7b1ba97c0e746f27a.tar.gz
STY: Wrap long lines in linalg test.
Diffstat (limited to 'numpy')
-rw-r--r--numpy/linalg/tests/test_linalg.py13
1 files changed, 9 insertions, 4 deletions
diff --git a/numpy/linalg/tests/test_linalg.py b/numpy/linalg/tests/test_linalg.py
index 5abaf21eb..5f9f3b920 100644
--- a/numpy/linalg/tests/test_linalg.py
+++ b/numpy/linalg/tests/test_linalg.py
@@ -1783,10 +1783,15 @@ class TestQR:
class TestCholesky:
# TODO: are there no other tests for cholesky?
- @pytest.mark.xfail(sys.platform == 'cygwin',
- reason="Consistently fails in CI")
- @pytest.mark.parametrize('shape', [(1, 1), (2, 2), (3, 3), (50, 50), (3, 10, 10)])
- @pytest.mark.parametrize('dtype', (np.float32, np.float64, np.complex64, np.complex128))
+ @pytest.mark.xfail(
+ sys.platform == 'cygwin', reason="Consistently fails in CI"
+ )
+ @pytest.mark.parametrize(
+ 'shape', [(1, 1), (2, 2), (3, 3), (50, 50), (3, 10, 10)]
+ )
+ @pytest.mark.parametrize(
+ 'dtype', (np.float32, np.float64, np.complex64, np.complex128)
+ )
def test_basic_property(self, shape, dtype):
# Check A = L L^H
np.random.seed(1)