(test_case)
| 54 | |
| 55 | |
| 56 | def require_tf(test_case): |
| 57 | if not is_tf_available(): |
| 58 | test_case = unittest.skip('test requires TensorFlow')(test_case) |
| 59 | return test_case |
| 60 | |
| 61 | |
| 62 | def require_torch(test_case): |
nothing calls this directly
no test coverage detected
searching dependent graphs…