Skip to content

Commit

Permalink
Skip 2 tests in windows gpu workflow (microsoft#12956)
Browse files Browse the repository at this point in the history
  • Loading branch information
mszhanyi authored Sep 14, 2022
1 parent b8e34fb commit 1ef1029
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions onnxruntime/test/providers/cpu/model_tests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,13 @@ TEST_P(ModelTest, Run) {
// specific keyword.
std::set<std::string> broken_tests_keyword_set = {};

if (provider_name == "cuda") {
#ifdef _WIN32
broken_tests.insert({"LSTM_Seq_lens_unpacked", "this test fails with new image since Aug 25."});
broken_tests.insert({"bidaf", "this test fails with new image since Aug 25."});
#endif
}

if (provider_name == "nnapi") {
broken_tests.insert({"scan9_sum", "Error with the extra graph"});
broken_tests.insert({"scan_sum", "Error with the extra graph"});
Expand Down

0 comments on commit 1ef1029

Please sign in to comment.