We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9f578dc + 4cfa7f6 commit 3140085Copy full SHA for 3140085
notebook/static/notebook/js/codecell.js
@@ -310,7 +310,16 @@ define([
310
}
311
312
if (stop_on_error === undefined) {
313
- stop_on_error = true;
+ if (this.metadata !== undefined &&
314
+ this.metadata.tags !== undefined) {
315
+ if (this.metadata.tags.indexOf('raises-exception') !== -1) {
316
+ stop_on_error = false;
317
+ } else {
318
+ stop_on_error = true;
319
+ }
320
321
322
323
324
325
this.clear_output(false, true);
0 commit comments