Skip to content

Commit

Permalink
skip failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhambhokare1 committed Jan 14, 2025
1 parent 638c232 commit a39321f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions onnx/test/test_backend_onnxruntime.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,29 @@ def run_node(cls, node, inputs, device=None, outputs_info=None, **kwargs):

# Exclude all tests that require IR10 until onnxruntime aligns
# TODO: Unwaive tests once onnxruntime supports Opset21/IR10 https://github.com/onnx/onnx/issues/5840
backend_test.exclude(
"("
"test_rotary_embedding"
"|test_rotary_embedding_expanded"
"|test_rotary_embedding_3d_input"
"|test_rotary_embedding_3d_input_expanded"
"|test_rotary_embedding_interleaved"
"|test_rotary_embedding_interleaved_expanded"
"|test_rotary_embedding_no_position_ids"
"|test_rotary_embedding_no_position_ids_expanded"
"|test_rotary_embedding_no_position_ids_interleaved"
"|test_rotary_embedding_no_position_ids_interleaved_expanded"
"|test_rotary_embedding_no_position_ids_rotary_dim"
"|test_rotary_embedding_no_position_ids_rotary_dim_expanded"
"|test_rotary_embedding_with_interleaved_rotary_dim"
"|test_rotary_embedding_with_interleaved_rotary_dim_expanded"
"|test_rotary_embedding_with_rotary_dim"
"|test_rotary_embedding_with_rotary_dim_expanded"
")"
)

# Exclude all tests that require IR11 until onnxruntime aligns
# TODO: Unwaive tests once onnxruntime supports Opset23/IR11
backend_test.exclude(
"("
"test_cast_"
Expand Down

0 comments on commit a39321f

Please sign in to comment.