Decorator marking a test that requires onnxruntime. These tests are skipped when onnxruntime isn't installed.
(test_case)
| 483 | |
| 484 | |
| 485 | def require_onnxruntime(test_case): |
| 486 | """ |
| 487 | Decorator marking a test that requires onnxruntime. These tests are skipped when onnxruntime isn't installed. |
| 488 | """ |
| 489 | return unittest.skipUnless(is_onnx_available(), "test requires onnxruntime")(test_case) |
| 490 | |
| 491 | |
| 492 | def require_note_seq(test_case): |
nothing calls this directly
no test coverage detected
searching dependent graphs…