Skip to content

Commit 7660991

Browse files
committed
FIX: Circle
1 parent aef59c2 commit 7660991

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.circleci/config.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ jobs:
1313
echo "export DISPLAY=:99" >> $BASH_ENV;
1414
echo "export OPENBLAS_NUM_THREADS=4" >> $BASH_ENV;
1515
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;
1718
- run:
1819
name: Merge with upstream
1920
command: |
@@ -48,7 +49,7 @@ jobs:
4849
name: Get Python running
4950
command: |
5051
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
5253
pip install --user -q --upgrade "https://api.github.com/repos/mne-tools/mne-python/zipball/master"
5354
- save_cache:
5455
key: pip-cache
@@ -60,12 +61,12 @@ jobs:
6061
name: Check installation
6162
command: |
6263
LIBGL_DEBUG=verbose python -c "from mayavi import mlab; import matplotlib.pyplot as plt; mlab.figure(); plt.figure()"
63-
echo $SUBJECTS_DIR
6464
6565
- run:
6666
name: Get data
6767
command: |
68-
mkdir -p $SUBJECTS_DIR;
68+
echo $SUBJECTS_DIR
69+
mkdir -p $SUBJECTS_DIR
6970
python -c "import mne; mne.datasets.fetch_fsaverage(verbose=True)"
7071
ls $SUBJECTS_DIR
7172
- save_cache:

doc/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ html_dev:
5050
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html"
5151

5252
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
5454
@echo
5555
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html"
5656

0 commit comments

Comments
 (0)