This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# put this file into any folder under which ipynb files shall be collected. | |
import pytest | |
import os,sys | |
wrapped_stdin = sys.stdin | |
sys.stdin = sys.__stdin__ | |
from IPython.zmq.blockingkernelmanager import BlockingKernelManager | |
sys.stdin = wrapped_stdin | |
from IPython.nbformat.current import reads |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
simple example script for running notebooks and reporting exceptions. | |
Usage: `checkipnb.py foo.ipynb [bar.ipynb [...]]` | |
Each cell is submitted to the kernel, and checked for errors. | |
""" | |
import os,sys,time |