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.
1 parent d8b39f1 commit dc8fd2cCopy full SHA for dc8fd2c
tests/test_ipynb.py
@@ -36,5 +36,9 @@ def _notebook_run(path):
36
37
38
def test_ipynb():
39
- nb, errors = _notebook_run('notebook/life_expectancy.ipynb')
40
- assert errors == []
+ if PY2:
+ print("Ignored ipynb tests in python 2")
41
+ pass
42
+ else:
43
+ nb, errors = _notebook_run('notebook/life_expectancy.ipynb')
44
+ assert errors == []
0 commit comments