Skip to content

Commit a053cd9

Browse files
committed
fix
1 parent e636f81 commit a053cd9

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

scripts/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def generate_index(all_notebooks: list[str], output_dir: str) -> None:
6868
<div class="grid gap-4">
6969
"""
7070
)
71-
for notebook in all_notebooks:
71+
for notebook in sorted(all_notebooks):
7272
notebook_name = notebook.split("/")[-1].replace(".py", "")
7373
display_name = notebook_name.replace("_", " ").title()
7474

tox.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ description = Run tests on latest version of all dependencies.
3636
passenv = {[global_var]passenv}
3737
deps =
3838
marimo
39+
allowlist_externals =
40+
rm
3941
commands =
42+
rm -fr nilearn_cache
4043
python scripts/build.py
4144

4245
[testenv:test]

0 commit comments

Comments
 (0)