From 7bd60ea660cd9a3fbb06203c6d2ec173297707f6 Mon Sep 17 00:00:00 2001 From: Senja Filipi Date: Mon, 29 Oct 2018 11:03:46 -0700 Subject: [PATCH] Disabling newly added LightGBM tests for x86 --- test/Microsoft.ML.StaticPipelineTesting/Training.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Microsoft.ML.StaticPipelineTesting/Training.cs b/test/Microsoft.ML.StaticPipelineTesting/Training.cs index e689384392..f6d005e9a2 100644 --- a/test/Microsoft.ML.StaticPipelineTesting/Training.cs +++ b/test/Microsoft.ML.StaticPipelineTesting/Training.cs @@ -754,7 +754,7 @@ public void FastTreeRanking() Assert.InRange(metrics.Ndcg[2], 36.5, 37); } - [Fact] + [ConditionalFact(typeof(Environment), nameof(Environment.Is64BitProcess))] // LightGBM is 64-bit only public void LightGBMRanking() { var env = new ConsoleEnvironment(seed: 0); @@ -795,7 +795,7 @@ public void LightGBMRanking() Assert.InRange(metrics.Ndcg[2], 36.5, 37); } - [Fact] + [ConditionalFact(typeof(Environment), nameof(Environment.Is64BitProcess))] // LightGBM is 64-bit only public void MultiClassLightGBM() { var env = new ConsoleEnvironment(seed: 0);