Skip to content

Commit 8ab8c07

Browse files
committed
still lab dog
1 parent 7a7ce49 commit 8ab8c07

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

ci_scripts/install.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ popd
2525
# Configure the conda environment and put it in the path using the
2626
# provided versions
2727
conda create -n testenv --yes python=$PYTHON_VERSION pip nose \
28-
numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION cython=$CYTHON_VERSION matplotlib scikit-learn nbconvert nbformat jupyter_client ipython jupyter notebook
28+
numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION cython=$CYTHON_VERSION matplotlib scikit-learn nbconvert nbformat jupyter_client ipython jupyter notebook ipykernel
2929
source activate testenv
30+
ipython kernel install
3031

3132

3233
if [[ "$COVERAGE" == "true" ]]; then

tests/examples/test_OpenMLDemo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def test_notebook(self):
4545
msg = 'Error executing the notebook "%s". ' % notebook_filename
4646
msg += 'See notebook "%s" for the traceback.\n\n' % notebook_filename_out
4747
msg += e.traceback
48-
self.fail(msg)
48+
self.fail(msg)
4949
finally:
5050
with open(notebook_filename_out, mode='wt') as f:
5151
nbformat.write(nb, f)

0 commit comments

Comments
 (0)