Skip to content

Commit 0169884

Browse files
danielsuoGoogle-ML-Automation
authored andcommitted
Skip linalg_test.py::ScipyLinAlgTest::testEighGrad on windows due to failing tolerances.
PiperOrigin-RevId: 835245232
1 parent c730416 commit 0169884

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/linalg_test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
from functools import partial
1616
import itertools
1717
from collections.abc import Iterator
18+
import platform
1819
import unittest
1920

2021
import numpy as np
@@ -637,6 +638,8 @@ def args_maker():
637638
lower=[True, False],
638639
)
639640
def testEighGrad(self, shape, dtype, lower):
641+
if platform.system() == "Windows":
642+
self.skipTest("Skip on Windows due to tolerance issues.")
640643
rng = jtu.rand_default(self.rng())
641644
a = rng(shape, dtype)
642645
a = (a + np.conj(T(a))) / 2

0 commit comments

Comments
 (0)