Skip to content

Commit 47bbd11

Browse files
committed
disable flaky test for Python3.6 and lower
1 parent faf198d commit 47bbd11

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/test_pipeline/components/feature_preprocessing/test_kernel_pca.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import sys
12
import unittest
23

34
from sklearn.linear_model import RidgeClassifier
@@ -9,6 +10,7 @@
910

1011

1112
class KernelPCAComponentTest(PreprocessingTestCase):
13+
@unittest.skipIf(sys.version_info < (3, 7), 'Random failures for Python < 3.7')
1214
def test_default_configuration(self):
1315
transformation, original = _test_preprocessing(KernelPCA,
1416
dataset='digits',

0 commit comments

Comments
 (0)