File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 13
13
echo "export DISPLAY=:99" >> $BASH_ENV;
14
14
echo "export OPENBLAS_NUM_THREADS=4" >> $BASH_ENV;
15
15
echo "export PATH=~/.local/bin:$PATH" >> $BASH_ENV;
16
- echo "export PATTERN=\"^\(\(?\!plot_fmri_activation_volume\|plot_resting_correlations\|rotate_animation\|save_movie\|save_views\).\)*\$\"" >> $BASH_ENV;
16
+ echo "export PATTERN=/plot_" >> $BASH_ENV;
17
+ echo "export IGNORE_PATTERN=\"\(plot_fmri_activation_volume\|plot_resting_correlations\)\"" >> $BASH_ENV;
17
18
- run :
18
19
name : Merge with upstream
19
20
command : |
48
49
name : Get Python running
49
50
command : |
50
51
pip install --user -q --upgrade pip numpy
51
- pip install --user -q --upgrade --progress-bar off scipy matplotlib vtk pyqt5 pyqt5-sip nibabel sphinx numpydoc pillow imageio imageio-ffmpeg https://api.github.com/repos/ sphinx-gallery/sphinx-gallery/zipball/master mayavi
52
+ pip install --user -q --upgrade --progress-bar off scipy matplotlib vtk pyqt5 pyqt5-sip nibabel sphinx numpydoc pillow imageio imageio-ffmpeg sphinx-gallery mayavi
52
53
pip install --user -q --upgrade "https://api.github.com/repos/mne-tools/mne-python/zipball/master"
53
54
- save_cache :
54
55
key : pip-cache
@@ -60,12 +61,12 @@ jobs:
60
61
name : Check installation
61
62
command : |
62
63
LIBGL_DEBUG=verbose python -c "from mayavi import mlab; import matplotlib.pyplot as plt; mlab.figure(); plt.figure()"
63
- echo $SUBJECTS_DIR
64
64
65
65
- run :
66
66
name : Get data
67
67
command : |
68
- mkdir -p $SUBJECTS_DIR;
68
+ echo $SUBJECTS_DIR
69
+ mkdir -p $SUBJECTS_DIR
69
70
python -c "import mne; mne.datasets.fetch_fsaverage(verbose=True)"
70
71
ls $SUBJECTS_DIR
71
72
- save_cache :
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ html_dev:
50
50
@echo " Build finished. The HTML pages are in $( BUILDDIR) /html"
51
51
52
52
html_dev-pattern :
53
- BUILD_DEV_HTML=1 $(SPHINXBUILD ) -D plot_gallery=1 -D sphinx_gallery_conf.filename_pattern=$(PATTERN ) -b html $(ALLSPHINXOPTS ) $(BUILDDIR ) /html
53
+ BUILD_DEV_HTML=1 $(SPHINXBUILD ) -D plot_gallery=1 -D sphinx_gallery_conf.filename_pattern=$(PATTERN ) -D sphinx_gallery_conf.ignore_pattern= $( IGNORE_PATTERN ) - b html $(ALLSPHINXOPTS ) $(BUILDDIR ) /html
54
54
@echo
55
55
@echo " Build finished. The HTML pages are in $( BUILDDIR) /html"
56
56
You can’t perform that action at this time.
0 commit comments