Decorator marking a test that requires onnxruntime. These tests are skipped when onnxruntime isn't installed.
(test_case)
| 674 | |
| 675 | |
| 676 | def require_onnxruntime(test_case): |
| 677 | """ |
| 678 | Decorator marking a test that requires onnxruntime. These tests are skipped when onnxruntime isn't installed. |
| 679 | """ |
| 680 | return pytest.mark.skipif(not is_onnx_available(), reason="test requires onnxruntime")(test_case) |
| 681 | |
| 682 | |
| 683 | def require_note_seq(test_case): |
nothing calls this directly
no test coverage detected
searching dependent graphs…