(self)
| 58 | workspace.RunOperatorOnce(op) |
| 59 | |
| 60 | def test_exception_builder(self): |
| 61 | op = CreatePythonOperator(MainOpFunctionThatThrowsCustomErrorInBuilder, [], []) |
| 62 | with self.assertRaisesRegex(CustomError, "This is an intentional exception in builder."): |
| 63 | workspace.RunOperatorOnce(op) |
| 64 | |
| 65 | @given(x=hu.tensor()) |
| 66 | def test_feed_with_helper_function(self, x): |
nothing calls this directly
no test coverage detected