Skip to content

Commit

Permalink
test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
novikov-alexander committed Nov 9, 2023
1 parent e6c7c79 commit 6940b31
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,13 @@ private void TestBasic<T>() where T : struct
}
}

[Ignore("Test to check how it affects CI.")]
[TestMethod]
public void TestBasic()
{
//TODO: add np.half
TestBasic<float>();
TestBasic<double>();
//TestBasic<float>();
//TestBasic<double>();
}

private void TestTensorLearningRate<T>() where T : struct
Expand Down Expand Up @@ -111,12 +112,13 @@ private void TestTensorLearningRate<T>() where T : struct
}
}

[Ignore("Test to check how it affects CI.")]
[TestMethod]
public void TestTensorLearningRate()
{
//TODO: add np.half
TestTensorLearningRate<float>();
TestTensorLearningRate<double>();
//TestTensorLearningRate<float>();
//TestTensorLearningRate<double>();
}
}
}

0 comments on commit 6940b31

Please sign in to comment.