| 147 | """Test that CSVScraperMultiGraph.run propagates exceptions from the graph's execute method.""" |
| 148 | |
| 149 | class DummyGraphException: |
| 150 | def execute(self, inputs): |
| 151 | raise Exception("Test exception") |
| 152 | |
| 153 | prompt = "Exception test prompt" |
| 154 | source = ["url_exception"] |
no outgoing calls