Skip to content

Commit

Permalink
Fix broken tests by specifying only certain notebooks to execute
Browse files Browse the repository at this point in the history
  • Loading branch information
blezek committed Apr 11, 2017
1 parent 6dc2efb commit e5c9ddb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,9 @@ jobs:
- run:
name: test notebooks in python 2 and 3
command: |
jupyter nbconvert --ExecutePreprocessor.kernel_name=python2 --ExecutePreprocessor.timeout=-1 --to notebook --execute /tmp/*.ipynb
jupyter nbconvert --ExecutePreprocessor.kernel_name=python3 --ExecutePreprocessor.timeout=-1 --to notebook --execute /tmp/*.ipynb
jupyter nbconvert --ExecutePreprocessor.kernel_name=python2 --ExecutePreprocessor.timeout=-1 --to notebook --execute /tmp/RadiomicsExample.ipynb /tmp/FeatureVisualization.ipynb /tmp/FeatureVisualizationWithClustering.ipynb /tmp/FilteringEffects.ipynb
jupyter nbconvert --ExecutePreprocessor.kernel_name=python3 --ExecutePreprocessor.timeout=-1 --to notebook --execute /tmp/RadiomicsExample.ipynb /tmp/FeatureVisualization.ipynb /tmp/FeatureVisualizationWithClustering.ipynb /tmp/FilteringEffects.ipynb

0 comments on commit e5c9ddb

Please sign in to comment.