Skip to content

Commit d110fff

Browse files
committed
Update notebooks, re-add notebook tests
1 parent a66e187 commit d110fff

6 files changed

Lines changed: 487 additions & 327 deletions

File tree

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ env:
1919
- DISTRIB="conda" PYTHON_VERSION="3.4" SKLEARN_VERSION="0.18.2"
2020
- DISTRIB="conda" PYTHON_VERSION="3.5" SKLEARN_VERSION="0.18.2"
2121
- DISTRIB="conda" PYTHON_VERSION="3.6" COVERAGE="true" SKLEARN_VERSION="0.18.2"
22+
- DISTRIB="conda" PYTHON_VERSION="3.6" EXAMPLES="true" SKLEARN_VERSION="0.18.2"
2223

2324
install: source ci_scripts/install.sh
2425
script: bash ci_scripts/test.sh

ci_scripts/install.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,12 @@ popd
2626
# provided versions
2727
conda create -n testenv --yes python=$PYTHON_VERSION pip
2828
source activate testenv
29-
pip install nose numpy scipy cython scikit-learn==$SKLEARN_VERSION pandas \
30-
matplotlib jupyter notebook nbconvert nbformat jupyter_client ipython \
31-
ipykernel oslo.concurrency
29+
pip install nose numpy scipy cython scikit-learn==$SKLEARN_VERSION oslo.concurrency
30+
31+
if [[ "EXAMPLES" == "true" ]]; then
32+
pip install matplotlib jupyter notebook nbconvert nbformat jupyter_client ipython \
33+
ipykernel pandas seaborn
34+
fi
3235

3336
if [[ "$COVERAGE" == "true" ]]; then
3437
pip install codecov

examples/EEG Example.ipynb

Lines changed: 35 additions & 44 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)