Skip to content

Commit 7c16c30

Browse files
Disable flaky test (#6685)
* disable flaky test * adding one more flaky test
1 parent 6971802 commit 7c16c30

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

test/Microsoft.ML.Fairlearn.Tests/GridSearchTest.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
using Microsoft.Data.Analysis;
77
using Microsoft.ML.AutoML;
88
using Microsoft.ML.Fairlearn.AutoML;
9+
using Microsoft.ML.TestFramework.Attributes;
910
using Xunit;
1011
using Xunit.Abstractions;
1112

@@ -75,7 +76,7 @@ private DataFrame CreateGridScearhDataset()
7576
/// <summary>
7677
/// This trial runner run the tests from Grid searh for Binary Classification.ipynb
7778
/// </summary>
78-
[Fact]
79+
[X86X64Fact("Currently flaky on non x86/x64 devices. Disabling until we figure it out. See https://github.com/dotnet/machinelearning/issues/6684")]
7980
public void TestGridSearchTrialRunner2()
8081
{
8182
var context = new MLContext();

test/Microsoft.ML.Predictor.Tests/TestPredictors.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ public void EarlyStoppingTest()
147147
/// <summary>
148148
/// Multiclass Logistic Regression test.
149149
/// </summary>
150-
[Fact]
150+
[X86X64Fact("Currently flaky on non x86/x64 devices. Disabling until we figure it out. See https://github.com/dotnet/machinelearning/issues/6684")]
151151
[TestCategory("Multiclass")]
152152
[TestCategory("Logistic Regression")]
153153
public void MulticlassLRTest()

0 commit comments

Comments
 (0)