diff --git a/test/Microsoft.ML.Tests/OnnxConversionTest.cs b/test/Microsoft.ML.Tests/OnnxConversionTest.cs index 74abe16841..04f6dbca13 100644 --- a/test/Microsoft.ML.Tests/OnnxConversionTest.cs +++ b/test/Microsoft.ML.Tests/OnnxConversionTest.cs @@ -43,7 +43,7 @@ public OnnxConversionTest(ITestOutputHelper output) : base(output) /// call to evaluate that file. The outputs of are checked against the original /// ML.NET model's outputs. /// - [ConditionalFact(typeof(BaseTestBaseline), nameof(BaseTestBaseline.NotFullFramework))] // Tracked by https://github.com/dotnet/machinelearning/issues/2106 + [Fact] public void SimpleEndToEndOnnxConversionTest() { // Step 1: Create and train a ML.NET pipeline. @@ -118,7 +118,7 @@ private class BreastCancerMulticlassExample public float[] Features; } - [ConditionalFact(typeof(BaseTestBaseline), nameof(BaseTestBaseline.LessThanNetCore30AndNotFullFramework))] // Tracked by https://github.com/dotnet/machinelearning/issues/2087 + [ConditionalFact(typeof(BaseTestBaseline), nameof(BaseTestBaseline.LessThanNetCore30OrNotNetCore))] // Tracked by https://github.com/dotnet/machinelearning/issues/2087 public void KmeansOnnxConversionTest() { // Create a new context for ML.NET operations. It can be used for exception tracking and logging,